You are here

function services_ccc_menu in Services Client 7

Implementation of hook_menu()

File

services_ccc/services_ccc.module, line 6

Code

function services_ccc_menu() {
  $items['admin/structure/services_client/conditional_taxonomy'] = array(
    'title' => 'Custom Condition',
    'description' => 'Send node to remote site based on taxonomy',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'services_ccc_settings',
    ),
    'access arguments' => array(
      'administer services client',
    ),
    'weight' => 20,
    'type' => MENU_LOCAL_TASK,
  );
  return $items;
}