You are here

function bigmenu_slice_form in Big Menu 7

Same name and namespace in other branches
  1. 6 bigmenu.admin.inc \bigmenu_slice_form()

Form for editing the immediate children of the given menu item id.

Invoked by menu callback or by json request.

Return value

array FAPI form.

2 string references to 'bigmenu_slice_form'
bigmenu_menu in ./bigmenu.module
Declare admin links and AJAX callbacks.
bigmenu_slice_form_js in ./bigmenu.admin.inc
Return a submenu slice form in json format.

File

./bigmenu.admin.inc, line 105
Administrative page callbacks for bigmenu module.

Code

function bigmenu_slice_form($form, &$form_state, $menu, $menu_link, $depth = 2) {

  // DB lookup the children of this item.
  global $menu_admin;
  $p_depth = 'p' . $menu_link['depth'];
  $sql = "\n    SELECT m.load_functions, m.to_arg_functions, m.access_callback, m.access_arguments, m.page_callback, m.page_arguments, m.title, m.title_callback, m.title_arguments, m.type, m.description, ml.*\n    FROM {menu_links} ml LEFT JOIN {menu_router} m ON m.path = ml.router_path\n    WHERE ml.menu_name = :menu_name\n    AND " . check_plain($p_depth) . " = :mlid\n    ORDER BY p1 ASC, p2 ASC, p3 ASC, p4 ASC, p5 ASC, p6 ASC, p7 ASC, p8 ASC, p9 ASC";
  $result = db_query($sql, array(
    ':menu_name' => $menu['menu_name'],
    ':mlid' => $menu_link['mlid'],
  ), array(
    'fetch' => PDO::FETCH_ASSOC,
  ));
  $links = array();
  foreach ($result as $item) {
    $links[] = $item;
  }
  $tree = menu_tree_data($links);
  $node_links = array();
  menu_tree_collect_node_links($tree, $node_links);

  // We indicate that a menu administrator is running the menu access check.
  $menu_admin = TRUE;
  menu_tree_check_access($tree, $node_links);
  $menu_admin = FALSE;

  // When doing a slice, don't show the actual parent link item,
  // just the children.
  foreach ($tree as $ix => $data) {
    $tree[$ix]['link'] = array();
  }

  // (there was only one, but I didn't know its name).
  $form = _bigmenu_overview_tree_form($tree, $depth);
  $form['#theme'] = 'bigmenu_overview_form';
  $form['#menu'] = $menu;
  if (element_children($form)) {
    $form['actions'] = array(
      '#type' => 'actions',
    );
    $form['actions']['submit'] = array(
      '#type' => 'submit',
      '#value' => t('Save configuration'),
    );
  }
  else {
    $form['#empty_text'] = array(
      '#markup' => t('There are no menu items yet.'),
    );
  }
  return $form;
}