You are here

function easychart_wysiwyg_menu in Easychart 7.3

Implements hook_menu().

File

modules/easychart_wysiwyg/easychart_wysiwyg.module, line 11
Easychart WYSIWYG integration.

Code

function easychart_wysiwyg_menu() {
  $items['easycharts/chart-options/%node'] = array(
    'page callback' => 'easychart_chart_options',
    'page arguments' => array(
      2,
    ),
    'access callback' => 'node_access',
    'access arguments' => array(
      'view',
      2,
    ),
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}