You are here

function matrix_menu in Matrix field 7.2

Same name and namespace in other branches
  1. 6.2 matrix.module \matrix_menu()

Implementation of hook_menu()

File

./matrix.module, line 14

Code

function matrix_menu() {
  $items['matrix/calculation'] = array(
    'title' => 'Matrix custom calculation callback',
    'description' => 'Custom calculations will be done using this callback',
    'page callback' => 'matrix_custom_calculation_callback',
    'access callback' => TRUE,
    'type' => MENU_CALLBACK,
  );
  return $items;
}