You are here

function isotope_example_menu in Isotope (with Masonry and Packery) 7.2

Implements hook_menu().

File

isotope_example/isotope_example.module, line 141
Simple example module.

Code

function isotope_example_menu() {
  $items['isotope-example'] = array(
    'title' => 'Isotope Examples',
    'page callback' => 'isotope_example_page',
    'access callback' => TRUE,
  );
  $items['isotope-example/theme-example'] = array(
    'title' => 'Isotope Theme Example',
    'page callback' => 'isotope_example_theme_page',
    'access callback' => TRUE,
  );
  return $items;
}