function tripal_views_biological_data_page
2.x tripal_views.module | tripal_views_biological_data_page() |
1.x tripal_views.module | tripal_views_biological_data_page() |
A landing page for all views of chado content. Simply lists all menu items that are children of it.
1 string reference to 'tripal_views_biological_data_page'
- tripal_views_menu in tripal_views/
tripal_views.module - Implements hook_menu()
File
- tripal_views/
tripal_views.module, line 199
Code
function tripal_views_biological_data_page() {
$output = '';
$item = menu_get_item();
$content = system_admin_menu_block($item);
$output .= '<dl class="admin-list">';
foreach ($content as $item) {
$output .= '<dt>' . l($item['title'], $item['href'], $item['localized_options']) . '</dt>';
$output .= '<dd>' . $item['description'] . '</dd>';
}
$output .= '</dl>';
return $output;
}