Drupal

Instalación, mantenimiento, creación web, etc... con el CMS y framework Drupal.

DRUPAL: Imprimir el breadcrumb siempre en los foros

<!-- citor --->
<?php if  (($node->type == 'forum') || (arg(0) == 'forum')) : ?>
<?php print $breadcrumb; ?>
<?php endif; ?>
<!--- fin --->

DRUPAL: Chequear si el usuario está logeado

<?php
global $user;
 
if ( $user->uid ) {
  // Logged in user
}
else {
  // Not logged in
}
?>
Distribuir contenido