Random
- Attributes Types 2012
- Nested-query approach to mining field_collection data and relationship <?php function get_species_country($id_country) { $inner = new EntityFieldQuery(); $inner_r = $inner->entityCondition('entity_type', 'field_collection_item') ->fieldCondition('field_species_country', 'target_id', $id_country, '=') ->execute(); if(!emp... Code Template Coding Drupal 2014
- Orgnsm (ROOT) Community Outreach Divisions Catalog Work Information Structuring Stylesheet Coding JavaScript Graphic Design 2016
- Radiesse Dermal Product Information for Doctors & Patients Helped with overall framework built main XHTML+template constructed the map section and before and after section View this Site radiesse.com ... Work Information Structuring Stylesheet Coding JavaScript Template Coding 2010
- Various WP snippets Show Links Menu w/Active Class <nav> <?php $args=array( 'sort_order' => 'ASC', 'sort_column' => 'post_date', 'hierarchical' => 1, 'exclude' => '', 'include' => '', 'meta_key' => '', 'meta_value' => '', 'authors' => '', 'child_of' => 0, 'parent' => -1, 'exclude_t... Code Template Coding Wordpress 2013
- Read and Process RSS <?php function getRSS( $url ){ $cobj = curl_init( $url ); curl_setopt( $cobj, CURLOPT_RETURNTRANSFER, 1 ); curl_setopt( $cobj, CURLOPT_CONNECTTIMEOUT, 0 );//0 = no timeout $tumblr_raw = curl_exec( $cobj ); curl_close( $cobj ); if( $tumblr_raw ){ $tumblr_xml = new DOMDocument(); $tumblr_xml->lo... Code Template Coding 2013
- PaulBird.tv Mixed Martial Arts Fighter Information & Media Layout & Typography, DrupalNodes, DrupalBlocks, UI Design/Background Art, DrupalViews Templates, YouTube Embedding... Work Stylesheet Coding Information Structuring Graphic Design Template Coding JavaScript Drupal 2011
- Create symlinks <?php symlink('/homepages/21/d93015512/htdocs/library/organic_connectivity', '/homepages/21/d93015512/htdocs/drupal/sites/all/modules/organic_connectivity/lib'); ?>... Code Information Structuring PHP 2014
- In the Weeds Restaurant Management Tool Stylesheet Coding JavaScript Work 2016
- IXIAS my homepage Work Stylesheet Coding JavaScript Graphic Design Information Structuring PHP 2015
- Render imagecache images echo( "<img src=\"".image_style_url("thumbnail", $photo["uri"] )."\" alt=\"\"/>" );... Code Template Coding Drupal 2013
- Oakland Police Charity Information & Donation Work Wordpress Stylesheet Coding 2016
- Make Drupal Module Most Important So other modules don't supersede your module, run this code once. <?php db_query("UPDATE {system} SET weight = 100 WHERE name = 'MODULE_NAME'"); ?>... Code Template Coding Drupal 2013
- Pagination Logic <?php $items = array( 0 => array( "item 1", "2013-09-13", "1" ), 1 => array( "item 2", "2013-09-14", "2" ), 2 => array( "item 3", "2013-09-15", "3" ), ); ######## CALCULATIONS ######### # set per-page var if (isset($_GET["perpage"])) $perpage = $_GET["perpage"]; else $perpage = 10; # calc ... Code Template Coding PHP 2013
- Using jQuery flexslider with animated captions callback jQuery(window).load(function(){ jQuery('.flexslider').flexslider( { pauseOnHover: true, controlsContainer: ".flex-container", slideshowSpeed: 8000, before: function(slider){ var currentSlide = slider.slides.eq(slider.currentSlide); jQuery(currentSlide... Code JQuery 2014
- Trauma Informed Care Information & Blog Stylesheet Coding Template Coding Work Wordpress 2013
- Lotto-rithm Algorithm knowledge promotion Work Graphic Design 2016
- Manually reset Drupal admin password <?php define('DRUPAL_ROOT', getcwd()); require_once DRUPAL_ROOT . '/includes/bootstrap.inc'; drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); require_once DRUPAL_ROOT . '/includes/password.inc'; if (isset($_GET['pass']) && !empty($_GET['pass'])) { $newhash = user_hash_password($_GET['pass']); } else { die('... Code Drupal PHP 2014
- Luscious Hawaiian Natural Island Food Products Graphic Design Template Coding Stylesheet Coding Work 2011
- Add unique IDs to menu items <?php function HOOK_menu_link( array $variables ){ $element = $variables['element']; $sub_menu = ''; $name_id = strtolower(strip_tags($element['#title'])); // remove colons and anything past colons if (strpos($name_id, ':')) $name_id = substr ($name_id, 0, strpos($name_id, ':')); //Pr... Code Template Coding Drupal 2013
- Damiak Music Portfolio, Photos, Videos & Journal ... Work Information Structuring Stylesheet Coding Graphic Design 2003
- Incubator Artwork Project Archive Typography & Layout, Content Structuring, UI/X Design, Interactivity & Sorting... Work Stylesheet Coding Information Structuring Graphic Design Template Coding JavaScript Drupal Organic Connectivity Module 2013
- Slideshow HTML <div id="photos_rotator"> <ul> <li> <a href="/node/15"> <span class="title">003</span> </a> <div class="rotator_full"><img src="003_0.jpg" alt=""/></div> </li> <li> <a href="/node/14"> <span class="t... JavaScript Stylesheet Coding Code JQuery 2013
- NeuroGenesix Dance Music Event Information ... Work Information Structuring Stylesheet Coding Graphic Design Template Coding 2015
- LDAP Connect and Bind Test <?php $host = "127.0.0.1:10389"; $ldap = ldap_connect($host); ldap_set_option($ldap, LDAP_OPT_PROTOCOL_VERSION, 3); $username = "uid=admin,ou=system"; $password = "secret"; if( $bind = ldap_bind($ldap, $username, $password) ) echo( "logged into ".$host." as ".$username ); else echo( "Fa... Code Template Coding PHP 2013