2010-09-01 101 views

回答

4
  • 創造一個新的塊。
  • 格式:PHP代碼

塊主體:

<? 
global $user; 
print $user->name; 
?> 
+2

出於完整性:如果你不能選擇「PHP代碼'作爲塊內容過濾器,轉到您的模塊並啓用'PHP過濾器'。 – dirkjot 2012-02-25 20:30:52

3

在Drupal 7的,使用名爲YOURMODULE自定義模塊:

/** 
* Implements hook_block_info(). 
*/ 
function YOURMODULE_block_info() { 
    return array(
    'YOURMODULE_logged_in_as' => array(
     'info' => t('Login information ("Logged in as...").'), 
     'cache' => DRUPAL_CACHE_PER_USER, 
    ), 
); 
} 

/** 
* Implements hook_block_view(). 
*/ 
function YOURMODULE_block_view($delta = '') { 
    if ($delta == 'YOURMODULE_logged_in_as') { 
    global $user; 
    return array(
     'subject' => NULL, 
     'content' => t('Logged in as !name', array('!name' => theme('username', array('account' => $user)))), 
    ); 
    } 
} 
相關問題