Drupal 7 を使用しており、ナビゲーション メニューに 3 つのメニュー リンクを追加したいと考えています。リンクは、現在ログインしているユーザーの「uid」に基づいていますが、機能させることができません。私はこのサイトをチェックアウトしましたが、これまでの例ではカスタム モジュールを使用して実装していました。これを template.php ページに追加しようとしています。
これは現在私が持っているものです。
function mytheme_menu() {
$items = array();
$items['user/%uid/following'] = array(
'title' => 'My Following Content',
'description' => 'View the item',
'type' => MENU_NORMAL_ITEM,
'menu_name' => 'navigation',
'access callback' => 'user_is_logged_in', // TRUE, 'user_is_logged_in' or user_is_anonymous to check if logged in
'expanded' => TRUE,
);
$items['user/%uid/created'] = array(
'title' => 'My Created Content',
'description' => 'Item members',
'type' => MENU_NORMAL_ITEM,
'menu_name' => 'navigation',
'page callback' => views_page('individual_item', 'item_members'),
'access callback' => 'user_is_logged_in', // TRUE, 'user_is_logged_in' or user_is_anonymous to check if logged in
'expanded' => TRUE,
);
$items['user/%uid/interacted'] = array(
'title' => 'My Interacted Content',
'description' => 'All the Content for this item',
'menu_name' => 'navigation',
'type' => MENU_NORMAL_ITEM,
'page callback' => views_page('individual_item', 'item_content'),
'access callback' => 'user_is_logged_in', // TRUE, 'user_is_logged_in' or user_is_anonymous to check if logged in
'expanded' => TRUE,
);
return $items;
}