domain_content_page()The domain content page of menu callbacks.
A link group for each domain the user can access.
domain_content/domain_content.admin.inc, line 16
<?php
function domain_content_page() {
$content = array();
$content = system_admin_menu_block(menu_get_item('admin/domain/content'));
// Print the list of options.
if (!empty($content)) {
$output = theme('admin_block_content', $content);
}
// There was an error or invalid request.
else {
$output = t('There are no valid domains configured.');
}
return $output;
}
?>