function search_embedded_form_menu

Implements hook_menu().

File

modules/search/tests/search_embedded_form.module, line 15

Code

function search_embedded_form_menu() {
    $items['search_embedded_form'] = array(
        'title' => 'Search_Embed_Form',
        'page callback' => 'drupal_get_form',
        'page arguments' => array(
            'search_embedded_form_form',
        ),
        'access arguments' => array(
            'search content',
        ),
        'type' => MENU_CALLBACK,
    );
    return $items;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.