0

我有一个添加主菜单链接的模块。当我单击该链接时,请求的页面会被加载(一个 .js 和 .html 文件)。

我的主菜单如下所示:

  • 我的链接

我的代码如下所示:

<?php

/**                                                                                                                                           
 * Implements hook_menu()                                                                                                                     
 */
function kl_menu(){
  $items = array();

  $items['simple_link'] = array(
   'title'            => t('my link'),
   'page callback'    => 'build_page',
   'access arguments' => array('access content'),
   'menu_name' => 'main-menu',
   'type' => MENU_NORMAL_ITEM,
  );

/*                                                                                                                                            
 * build_page                                                                                                                   
 */
function build_page() {
  drupal_add_js(drupal_get_path('module', 'kl') . '/mypage.js', 'file');
   return  ( file_get_contents( drupal_get_path('module', 'kl').'/mypage.html') );
}

现在我想添加一个子菜单而不是简单的普通链接,以便我的主菜单如下所示:

  • 我的子菜单
    • 我的子链接1
    • 我的子链接2

我希望当我点击“我的子菜单”时,这个子菜单会展开并显示更多链接。然后,当我重新单击我的子菜单时,我希望它崩溃。

我对drupal php等很陌生。

我怎样才能做到这一点。我正在使用花环主题。

谢谢

爸爸

4

1 回答 1

0
/**
 * Implements hook_menu().
 */
function kl_menu() {
  $items['simple_link'] = array(
    'title'            => t('my link'),
    'page callback'    => 'kl_build_page',
    'access arguments' => array('access content'),
    'menu_name' => 'main-menu',
    'type' => MENU_NORMAL_ITEM,
  );
  $items['simple_link/my_sublink_1'] = array(
    'title'            => t('my sub link 1'),
    'page callback'    => 'mymodule_sub_page_1',
    'access arguments' => array('access content'),
    'type' => MENU_NORMAL_ITEM,
  );
  $items['simple_link/my_sublink_2'] = array(
    'title'            => t('my sub link 2'),
    'page callback'    => 'mymodule_sub_page_1',
    'access arguments' => array('access content'),
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}

/**
 * Implements hook_theme().
 */
function kl_theme() {
  $template_path = drupal_get_path('module', 'kl') . '/templates';

  return array(
    // File would be <module path>/templates/kl-build-page.tpl.php
    'kl_build_page' => array(
      'path' => $template_path,
      'template' => 'kl-build-page')
    ),
    // File would be <module path>/templates/kl-sub-page-1.tpl.php
    'sub_page_1' => array(
      'path' => $template_path,
      'template' => 'kl-sub-page-1')
    ),
    // File would be <module path>/templates/kl-sub-page-2.tpl.php
    'sub_page_2' => array(
      'path' => $template_path,
      'template' => 'kl-sub-page-2')
    ),
  );
}

/**
 * Callback for main build page.
 */
function kl_build_page() {
  drupal_add_js(drupal_get_path('module', 'kl') . '/mypage.js', 'file');
  return  theme('kl_build_page');
}

/**
 * Page callback for sub page 1
 */
function kl_sub_page_1() {
  return theme('kl_sub_page_1');
}

/**
 * Page callback for sub page 2
 */
function kl_sub_page_2() {
  return theme('kl_sub_page_2');
}
于 2013-02-26T05:19:56.753 回答