function isotope_example_page in Isotope (with Masonry and Packery) 7.2
Page callback.
Return value
array Drupal render array.
1 string reference to 'isotope_example_page'
- isotope_example_menu in isotope_example/
isotope_example.module - Implements hook_menu().
File
- isotope_example/
isotope_example.module, line 161 - Simple example module.
Code
function isotope_example_page() {
$links[] = l(t('Theme Example'), 'isotope-example/theme-example');
if (module_exists('isotope_views')) {
$links[] = l(t('Views Example'), 'isotope-example/views-example');
}
$return[] = array(
'#theme' => 'item_list',
'#items' => $links,
'#type' => 'ul',
);
return $return;
}