You are here

function cf_menu_accessibility_page in Common Functionality 7.2

Same name and namespace in other branches
  1. 7 modules/cf_menu/includes/menu.inc \cf_menu_accessibility_page()

Displays the content accessibility menu page.

This page presents links to content accessibility management pages.

See also

cf_menu_menu()

1 string reference to 'cf_menu_accessibility_page'
cf_menu_menu in modules/cf_menu/cf_menu.module
Implements hook_menu().

File

modules/cf_menu/pages/menu.inc, line 15
This file defines the menu page functions used by hook_menu().

Code

function cf_menu_accessibility_page() {
  drupal_set_title(t("Content Accessibility"), PASS_THROUGH);
  $blocks = cf_menu_blocks_at_path('accessibility');
  if (empty($blocks)) {
    return t("There are no links available on this page.");
  }
  ksort($blocks);
  return theme('admin_page', array(
    'blocks' => $blocks,
  ));
}