12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- * @file
- * This is the file description for materio_search_api_ajax module.
- *
- * In this more verbose, multi-line description, you can specify what this
- * file does exactly. Make sure to wrap your documentation in column 78 so
- * that the file can be displayed nicely in default-sized consoles.
- */
- /**
- * Implements hook_init().
- */
- function materio_search_api_ajax_init() {
- drupal_add_js(drupal_get_path('module', 'materio_search_api_ajax').'/js/libraries/jquery.history.js');
- drupal_add_js(drupal_get_path('module', 'materio_search_api_ajax').'/js/materio_search_api_ajax-ck.js');
- }
- /**
- * Implements hook_menu().
- */
- function materio_search_api_ajax_menu() {
- $items = array();
- $items['materio_search_api_ajax/search/%'] = array(
- 'title' => 'Matrio base ajax',
- 'page callback' => 'materio_search_api_ajax_search',
- 'page arguments' => array(2,3),
- 'access callback' => TRUE,
- 'access arguments' => array('use materio search api'),
- 'file' => 'materio_search_api_ajax.pages.inc',
- 'type' => MENU_CALLBACK,
- );
- return $items;
- }
|