You are hereFeed aggregator

Feed aggregator


Munin - Trac

Drupal-iocious - Fri, 07/30/2010 - 23:16

Translation for Drupal contact forms | Drupal-Translation

Drupal-iocious - Fri, 07/30/2010 - 20:46

Traducción del formulario de contacto

Imagecache Example: User Profile Pictures | Lullabot

Drupal-iocious - Fri, 07/30/2010 - 20:13

<?php /** * * Insert into your theme's template.php file: * * Theme override for user.module * Utilized imagecache module to scale down large uploaded profile pictures * @param $size * Image size to scale to. Options: thumb (default) and large */ function phptemplate_user_picture($account, $size = 'thumb') { if (variable_get('user_pictures', 0)) { // Display the user's photo if available if ($account->picture && file_exists($account->picture)) { $picture = theme('imagecache', $size, $account->picture); } return '<div class="picture">'.$picture.'</div>'; } } ?>

boykma.com

Drupal-iocious - Fri, 07/30/2010 - 20:10

Imagemenu | drupal.org

Drupal-iocious - Thu, 07/29/2010 - 23:18