#Resources#
###Installation Profiles###
###Features##
###Drush & Makefiles###
| <header class="article-heading"> | |
| <div class="meta"> | |
| <span class="author">by <a href="" class="name" rel="author">Jeff Eaton</a></span><span class="date">on June 20, 2012</span> <a href="" class="short-url">Short URL</a> | |
| </div><!-- /.meta --> | |
| <hgroup> | |
| <h1>Module Monday: Custom Permissions</h1> | |
| <h2 class="subtitle">Fancy subtitle shows right here just like this when there is one.</h2> | |
| </hgroup> | |
| <ul class="social"> | |
| <li><a href="" class="comments">3 Comments</a></li> |
#Resources#
###Installation Profiles###
###Features##
###Drush & Makefiles###
| (function ($) { | |
| Drupal.behaviors.yourTheme = { | |
| attach: function(context, settings) { | |
| $('form label').css('display', 'none'); | |
| if(Modernizr.input.placeholder) { | |
| // Text inputs | |
| var formElements = $('form').find('input, textarea'); | |
| $.each(formElements, function(index, value){ | |
| if($(this).is('input')){ | |
| var label = $(this).siblings('label').text(); |
| function themefoo_preprocess_node(&$variables, $hook) { | |
| $node = $variables['node']; | |
| $type = $variables['type']; | |
| $columns = 1; // Default to 1 column layout. | |
| /* | |
| * Programmatically figure out how many columns we have | |
| * based on which fields the user has filled out in | |
| * the node form. | |
| * | |
| * I'll update this gist later to explain |
| ## | |
| ## Variables | |
| ## | |
| var.log_root = "/var/log/lighttpd" | |
| var.server_root = "/var/www" | |
| var.state_dir = "/var/run" | |
| var.home_dir = "/var/lib/lighttpd" | |
| var.conf_dir = "/etc/lighttpd" | |
| var.vhosts_dir = server_root + "/vhosts" |
| /* | |
| * Render the new user picture | |
| */ | |
| <?php print '<div class="user-picture"><img src="' . $user_picture . '" /></div>'; ?> | |
| /* | |
| * Render the now-available 'below_content' region | |
| * under the content or wherever you want. | |
| */ | |
| <div class="content"<?php print $content_attributes; ?>> |
| (function ($) { | |
| Drupal.behaviors.themename = { | |
| attach: function(context, settings) { | |
| // Add a hover class to nav items. | |
| $('.mainnav nav a') | |
| .hover( | |
| function() { | |
| $(this).addClass('hover'); | |
| }, | |
| function() { |
| ☎ - ☎ ☎ | |
| ☂ - ☂ ☂ | |
| ☑ - ☑ ☑ | |
| ☒ - ☒ ☒ | |
| ☐ - ☐ ☐ | |
| ☁ - ☁ ☁ | |
| ⌘ - ⌘ ⌘ | |
| ♻ - ♻ ♻ | |
| ⊕ | |
| � |
| <?php | |
| function yourmodule_custom_form($form, &$form_state, $term) { | |
| /* Note: rather than passing a $term var, you could use arg(2) from the url */ | |
| drupal_set_title('Your Label: ' . ucwords($term)); | |
| // or | |
| drupal_set_title('Your Label: ' . str_replace('%20',' ', arg(2))); | |
| /* Make life easier: */ | |
| $school = ucwords($term); |