यदि आप इसे एक मॉड्यूल में करना चाहते हैं (एक ब्लॉक में php कोड जोड़ने के लिए अनुशंसित है, जो तब संस्करण नियंत्रण में नहीं होगा), तो आप ऐसा कर सकते हैं:
(इस मामले में, यह सभी कोड यूजरव्यू नामक एक कस्टम मॉड्यूल में जाएगा।)
/**
* @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;
}
यदि आप तब किसी विषय में इस ब्लॉक की थीम को ओवरराइड करना चाहते थे, तो आप ऐसा करेंगे (अपने थीम के अपने टेम्पलेट में। फाइल में:
/**
* Theme the userwelcome block.
*/
function THEMENAME_userwelcome_welcome_block(&$variables) {
// Return the output of the block here.
}
ध्यान दें कि क्योंकि यह एक कस्टम मॉड्यूल है आप सीधे मॉड्यूल में थीम फ़िक्स्टन को अपडेट कर सकते हैं।
यदि आप एक कस्टम मॉड्यूल का उपयोग नहीं करना चाहते हैं तो आप php कोड के साथ एक कस्टम ब्लॉक बना सकते हैं और इसे जोड़ सकते हैं:
global $user;
// Only for logged in users.
if ($user->uid) {
print 'Welcome ' . theme('username', array('account' => $user));
}