123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- /*
- * Implementation of hook_permission().
- */
- function uc_cartlinksbuilder_permission() {
- return array(
- 'access cart links builder tool' => array(
- 'title' => t( 'access cart links builder tool'),
- ),
- );
- }
- /**
- * Implementation of hook_menu().
- */
- function uc_cartlinksbuilder_menu() {
- $items['admin/store/cart-links-builder'] = array(
- 'title' => 'Cart Links Builder',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('uc_cartlinksbuilder_builder_form'),
- 'access arguments' => array('access cart links builder tool'),
- 'file' => 'includes/forms.inc',
- );
- $items['uc-cartlinksbuilder/autocomplete'] = array(
- 'type' => MENU_CALLBACK,
- 'page callback' => 'uc_cartlinksbuilder_product_autocomplete',
- 'access arguments' => array('access cart links builder tool'),
- 'file' => 'includes/ajax.inc',
- );
- return $items;
- }
- /**
- * Implements hook_ctools_plugin_directory()
- *
- * Essentially this function enables us to provide custom ctools plugins
- * using our module.
- */
- function uc_cartlinksbuilder_ctools_plugin_directory($module, $plugin) {
- if ($module == 'uc_cartlinksbuilder' || $module == 'ctools' || $module == 'panels') {
- return 'includes/plugins/' . $plugin;
- }
- }
|