123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?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(array('materio_search_api_ajax' => array(
- 'module_path' => drupal_get_path('module', 'materio_search_api_ajax'),
- // 'strings'=>array(
- // 'sitetitle'=>,
- // 'siteslogan'=>,
- // ),
- )), 'setting');
- 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;
- }
|