Modül admin / config sayfasına nasıl eklenir?


27

Drupal 7'deki bir modül üzerinde çalışıyorum. Bir hook_menu uygulaması ekledim:

$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',
];

... ve mymodule.info dosyasına bir yapılandırma satırı:

configure = admin/config/content/mymodule

MyModule için bir Konfigürasyon bağlantısı şimdi yönetici / modüller sayfası görünüyor, fakat modülün admin / config sayfasında listelenmesini nasıl sağlayabilirim ? Yoksa admin / config sayfası sadece çekirdek modüller için mi ayrılmış?

Yanıtlar:


9

Admin / config için geri arama olan system_admin_config_page () koduna baktığımda , aşağıdaki satırları içerdiğini fark ettim:

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;
    }
    // ...
  }
  // ...
}

İlk sorgu, varsayılan olarak yönetim olan yol admin / config ile ilişkili menü için menu_name alanını seçer; ikinci sorgu, menu_name için aynı değere sahip olan ve ebeveynleri admin / config olan tüm menüleri seçer.

Menünüz menu_name için farklı bir değer kullandığından, ikinci sorgudan seçilmez ve admin / config sayfasında gösterilmez.


24

Bu şekilde yaparsanız, ana öğe için system.module geri çağrısı ile 'admin / config / mymodule' adresini ziyaret ettiğinizde güzel liste sayfasını elde edersiniz.

/**
 * 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
Menü değişikliklerinin etkili olması için modülü devre dışı bırakmanız ve etkinleştirmeniz gerektiğini unutmayın.
jevon

5
@jevon: (menü) önbelleğini temizlemek değişiklikleri görmek için yeterli.
Bart

menü önbelleği komut satırında drush kullanılarak silinebilir drush cc menu- ref: drupal.stackexchange.com/a/58621/1082
therobyouknow

3

'Menu_adı' bölümünü kaldırın, gerekli değildir.


1

Bu konuda config sayfasında da sorun yaşadım. Yapılandırma sayfasına bağlantı ekleyebilmemin tek yolu, 'admin / config / module' adresindeki üst bağlantı ve 'admin / config / module / manage' dizinindeki bir alt bağlantıyla iki menü öğesi bildirmekti. .

  $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;

bu benim için çalıştı.
Ben aslında $ yarım ürün iade etmediğimi fark edene kadar yaklaşık yarım saat boyunca mücadele ediyordum.


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
Bu, OP'nin neden yönetici sayfasında listelenen modüllerini görmediğini söylemediği için soruyu cevaplamıyor; Ayrıca, yalnızca kod yanıtları pek yardımcı olmaz. (Kodu kontrol edin: Bazı yazım hataları var.)
kiamlaluno
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.