Bunu bir modülde (daha sonra sürüm kontrolünde olmayacak bir bloğa php kodu eklemenin aksine önerilir) yapmak istiyorsanız, bunu yapabilirsiniz:
(bu durumda, tüm bu kod userwelcome adlı özel bir modüle gider.)
/**
* @file
* Adds a block that welcomes users when they log in.
*/
/**
* Implements hook_theme().
*/
function userwelcome_theme($existing, $type, $theme, $path) {
return array(
'userwelcome_welcome_block' => array(
'variables' => array('user' => NULL),
),
);
}
/**
* Implements hook_block_info().
*/
function userwelcome_block_info() {
// This example comes from node.module.
$blocks['welcome'] = array(
'info' => t('User welcome'),
'cache' => DRUPAL_CACHE_PER_USER,
);
return $blocks;
}
/**
* Implements hook_block_view().
*/
function userwelcome_block_view($delta = '') {
global $user;
$block = array();
switch ($delta) {
case 'welcome':
// Don't show for anonymous users.
if ($user->uid) {
$block['subject'] = '';
$block['content'] = array(
'#theme' => 'userwelcome_welcome_block',
'#user' => $user,
);
}
break;
}
return $block;
}
/**
* Theme the user welcome block for a given user.
*/
function theme_userwelcome_welcome_block($variables) {
$user = $variables['user'];
$output = t('Welcome !username', array('!username' => theme('username', array('account' => $user))));
return $output;
}
Daha sonra bir temada bu bloğun temasını geçersiz kılmak isterseniz bunu yaparsınız (temanızın template.php dosyasında):
/**
* Theme the userwelcome block.
*/
function THEMENAME_userwelcome_welcome_block(&$variables) {
// Return the output of the block here.
}
Bu özel bir modül olduğundan, doğrudan modüldeki tema işlevini de güncelleyebileceğinizi unutmayın.
Özel bir modül kullanmak istemiyorsanız php kodu ile özel bir blok oluşturabilir ve bunu ekleyebilirsiniz:
global $user;
// Only for logged in users.
if ($user->uid) {
print 'Welcome ' . theme('username', array('account' => $user));
}