Views fields relacionados con los usuarios, autores..
Ago
08
// En el template.php // Para el campo, Nodo: nombre de autor function phptemplate_username($object) { if ($object->uid && $object->name) { // Shorten the name when it is too long or it will break many tables. if (drupal_strlen($object->name) > 20) { $name = drupal_substr($object->name, 0, 15) .'...'; } else { $name = $object->name; } if (user_access('access user profiles')) { // la línea de... Leer mas