จะเพิ่มโมดูลไปยังหน้าผู้ดูแลระบบ / กำหนดค่าได้อย่างไร


27

ฉันกำลังทำงานกับโมดูลใน Drupal 7 ฉันได้เพิ่มการใช้ hook_menu:

$items['admin/config/content/mymodule'] = [
  'title'            => 'MyModule',
  'description'      => 'Configure MyModule settings.',
  'page callback'    => 'mymodule_get_form',
  'page arguments'   => ['mymodule_admin_settings'],
  'file'             => 'mymodule.admin.inc',
  'access arguments' => ['administer mymodule'],
  'menu_name'        => 'mymodule',
];

... และกำหนดค่าบรรทัดเพื่อ mymodule.info:

configure = admin/config/content/mymodule

กำหนดค่าการเชื่อมโยงสำหรับ MyModule ขณะนี้ปรากฏadmin / โมดูลหน้า แต่ฉันสามารถวิธีการยังมีโมดูลที่ระบุไว้ในadmin / การตั้งค่าหน้า? หรือหน้าผู้ดูแลระบบ / กำหนดค่าสำหรับโมดูลหลักเท่านั้น?

คำตอบ:


9

มองไปที่รหัสของsystem_admin_config_page ()ซึ่งเป็นการเรียกกลับหน้าเพจสำหรับผู้ดูแลระบบ / การตั้งค่าฉันสังเกตเห็นว่ามันมีบรรทัดต่อไปนี้:

if ($admin = db_query("SELECT menu_name, mlid FROM {menu_links} WHERE link_path = 'admin/config' AND module = 'system'")->fetchAssoc()) {
  $result = db_query("
    SELECT m.*, ml.*
    FROM {menu_links} ml
    INNER JOIN {menu_router} m ON ml.router_path = m.path
    WHERE ml.link_path != 'admin/help' AND menu_name = :menu_name AND ml.plid = :mlid AND hidden = 0", $admin, array('fetch' => PDO::FETCH_ASSOC));
  foreach ($result as $item) {
    _menu_link_translate($item);
    if (!$item['access']) {
      continue;
    }
    // ...
  }
  // ...
}

แบบสอบถามแรกเลือกฟิลด์ menu_name สำหรับเมนูที่เกี่ยวข้องกับพา ธ admin / config ซึ่งโดยค่าเริ่มต้นคือการจัดการ แบบสอบถามที่สองเลือกเมนูทั้งหมดที่มีค่าเหมือนกันสำหรับ menu_name และผู้ปกครองคือ admin / config

เนื่องจากเมนูของคุณใช้ค่าที่แตกต่างกันสำหรับ menu_name จึงไม่ได้เลือกจากการสืบค้นที่สองและจะไม่แสดงในหน้าผู้ดูแลระบบ / การกำหนดค่า


24

หากคุณทำเช่นนี้ด้วยการเรียกกลับ system.module สำหรับรายการหลักคุณจะได้รับหน้ารายการที่ดีเมื่อคุณไปที่ 'admin / config / mymodule'

/**
 * Implements hook_menu().
 */
function MYMODULE_menu() {

  $items = [];

  $items['admin/config/mymodule'] = [
    'title'            => 'My configuration section',
    'description'      => 'This is the parent item',
    'position'         => 'left',
    'weight'           => -100,
    'page callback'    => 'system_admin_menu_block_page',
    'access arguments' => ['administer site configuration'],
    'file'             => 'system.admin.inc',
    'file path'        => drupal_get_path('module', 'system'),
  ];

  // Need at least one child item before your section will appear.
  $items['admin/config/mymodule/item'] = [
    'title'            => 'First item',
    'description'      => 'This is the first child item in the section',
    'page callback'    => 'mymodule_item_callback',
    'access arguments' => ['administer site configuration'],
  ];

  return $items;
}

3
อย่าลืมว่าคุณจะต้องปิดการใช้งานและเปิดใช้งานโมดูลเพื่อให้การเปลี่ยนแปลงเมนูมีผล
jevon

5
@jevon: การล้างแคช (เมนู) เพียงพอที่จะเห็นการเปลี่ยนแปลง
บาร์ต

สามารถล้างแคชเมนูโดยใช้ drush ที่บรรทัดคำสั่งโดยใช้drush cc menu- อ้างอิง: drupal.stackexchange.com/a/58621/1082
therobyouknow


1

ฉันมีปัญหากับเรื่องนี้เช่นกันในหน้ากำหนดค่า วิธีเดียวที่ฉันสามารถเพิ่มลิงก์ไปยังหน้ากำหนดค่าได้คือการประกาศรายการเมนูสองรายการเช่นนั้นโดยมีลิงก์หลักที่ 'admin / config / module' และลิงก์ย่อยที่ 'admin / config / module / Manage' .

  $items['admin/config/whh-maps'] = array(
    'title' => 'World Hiphop configuration',
    'description' => 'Allows administrators to configure maps for WHH.',
    'position' => 'left',
    'weight' => -30,
    'page callback' => 'drupal_get_form',
    'page arguments' => array('whh_maps_form'),
    'access arguments' => array('administer whh maps'),
    'file' => 'whh_maps.admin.inc',
  );
  $items['admin/config/whh-maps/manage'] = array(
    'title' => 'Manage countries',
    'description' => 'Allows admins to edit country information',
    'page callback' => 'drupal_get_form',
    'page arguments' => array('whh_maps_form'),
    'access arguments' => array('administer whh maps'),
    'file' => 'whh_maps.admin.inc',
    'weight' => -10,
  ); 

1
$items['admin/config/user-interface/mymodule'] = array(
    'title' => 'My Module',
    'description' => 'description',
    'page callback' => 'drupal_get_form',
    'page arguments' => array('my_admin_function'),
    'access arguments' => array('administer site configuration'),
);

$items['admin/config/user-interface/mymodule/manage'] = array(
    'title' => 'My Module',
    'type' => MENU_DEFAULT_LOCAL_TASK,
    'description' => 'description',
    'weight' => -10,
);
return $items;

สิ่งนี้ใช้ได้สำหรับฉัน
จริง ๆ แล้วฉันกำลังดิ้นรนประมาณครึ่งชั่วโมงจนกระทั่งฉันรู้ว่าฉันไม่ได้คืนเงิน $ รายการ ... ฉันดูเหมือนจะทำอย่างนั้นเสมอ


0
/**
 * Implements hook_menu().
 */
function notification_menu() {

  $items = [];

  $items['admin/customize'] = [
    'title'            => 'Send Comment notifications',
    'discription'      => 'Admin will send notification to user about updates',
    'type'             => MENU_NORMAL_ITEM,
    'page callback'    => 'drupal_get_form',
    'page arguments'   => ['notification_form'],
    'access arguments' => ['access adminstration page'],
    'access callback'  => TRUE,
  ];

  return $items;
}

/**
 * Custom form.
 */
function notification_form($form, &$form_state) {

  $form['send_mail_to'] = [
    '#title'         => 'Send Mail To',
    '#discription'   => 'To whom you want to send form',
    '#size'          => 40,
    '#type'          => 'textfield',
    '#required'      => TRUE,
    '#default_value' => variable_get('send_mail_to'),
  ];

  //here the admin can wite subject for the mail.
  $form['mail_subject'] = [
    '#title'         => 'Subject',
    '#discription'   => 'the purpous of this mail',
    '#type'          => 'textfield',
    '#size'          => 40,
    '#maxlenght'     => 120,
    '#required'      => TRUE,
    '#default_value' => variable_get('mail_subject'),
  ];

  $form['mail_body'] = [
    '#title'         => 'Body',
    '#discription'   => 'the body of your mail.',
    '#type'          => 'textarea',
    '#row'           => 10,
    '#columns'       => 40,
    '#required'      => TRUE,
    '#default_value' => variable_get('mail_body'),
  ];

  $form['mail_bcc'] = [
    '#title' => 'BCC this mail to all',
    '#type'  => 'checkbox',

  ];

  return system_settings_form($form);
}

1
นี่ไม่ได้ตอบคำถามเพราะมันไม่ได้บอกว่าทำไม OP ไม่เห็นโมดูลของพวกเขาอยู่ในหน้าผู้ดูแลระบบ บวกคำตอบรหัสเท่านั้นจะไม่เป็นประโยชน์มาก (ตรวจสอบรหัส: คุณมีการพิมพ์ผิด)
kiamlaluno
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.