View allAll Photos Tagged drupal
Drupal test suite for CJP Jabber PHP library: testing roster retrieval and roster member statuses using jQuery.
They said it couldn't - WOULDN'T - be done. But we have done it - we've rebuilt the TV programs and schedules portion of WGBH.org using Drupal.
Behold: wwd.wgbh.org!
Tell your friends and loved ones.
we need more geek shirts, so heres my shot at it ...
Today the drupal 5.0 version is released
- its a rip off of the t-shirt i made for the "Rock the Night" club here in copenhagen but what the hell its only rock n roll and we like it :)
theres need for some adjustments, to create a more accurate jack D look (mainly the text elements)
My drupal puppy, Zeke. Why is he a drupal puppy? He will sit on that chair for a very long time to watch me code, and he is a schipperke, which is Belgian after all ;)
Drupal y móviles (SMS,MMS...) (VozMob) BOFa DrupalCampSpain 2010ean Cornellá de Llobregateko Citilabean.
A Drupal specific RSS icon graphic to use for your Drupal website or Blog.
Based off of an RSS icon set by user StudioM6 on DeviantArt.com.
Ecommerce para Drupal: Introducción a Ubercart saioa DrupalCampean saioa DrupalCampSpain 2010ean Cornellá de Llobregateko Citilabean.
Drupal nice: diez módulos imprescindibles que desconoces saioa DrupalCampSpain 2010ean Cornellá de Llobregateko Citilabean.
Starting life as a community messageboard, Drupal has grown to become a powerful and flexible application open source framework for creating all types of websites. It is used for community building and social networking, e-commerce and brochure-ware sites, intranets and portals.Many large and popular websites are built on Drupal, including www.mtv.co.uk, www.greenpeace.co.uk, universalmusic.com/ and www.fastcompany.com/One of Drupals key strengths is its active developer community, which is constantly seeking ways to improve the project. The core of Drupal 7 is currently in development and, beside aiming to improve the interface for end users, the project is dropping support for PHP 4 and re-implementing its database abstraction layer.Drupal is reputed to have a steep learning curve, but in this session we aim to show developers how straight forward customisation of Drupal can be and how it can greatly speed up development.We will introduce you
to Drupals theme system, which allows you to modify almost all of Drupals output so that the HTML it outputs is the HTML that you, the developer, want.We will start with a static HTML page and take you through the steps to convert it to a Drupal theme, showing you on the way the functionality you get for free: content management, a comprehensive user system, caching, search, form validation and more.In fact, with hundreds of contributed modules available, which extend Drupals core functionality in any way imaginable, we will be merely touching upon what Drupal has to offer!This video was originally shared on blip.tv by phpcodemonkey with a Creative Commons Attribution-NonCommercial-NoDerivs 2.0 license.
This is what the default "taxonomy" management screen looks like... as you can see, it privileges creating entire new "vocabularies", rather than working with existing ones.
Ecommerce para Drupal: Introducción a Ubercart saioa DrupalCampean saioa DrupalCampSpain 2010ean Cornellá de Llobregateko Citilabean.
Drupal event, themed.
Put the following in your theme's template.php file:
function THEMENAME_event_nodeapi($node) {
$output .= 'type. '-start">';
$output .= ''. t('Date: ') .''. format_date($node->event_start, 'custom', 'l F j, Y', $node->start_offset) .''."\n";
$output .= 'type. '-start">'. t('Start: ') .''. $node->start_time_format .''."\n";
if ($node->event_start != $node->event_end) {
$output .= 'type. '-end">'. t('End: ') .''. $node->end_time_format.''."\n";
}
return $output;
}