You are here

function responsive_tables_filter_menu in Responsive Tables Filter 7

Implements hook_menu().

Defines the menu routing for the administration path.

File

./responsive_tables_filter.module, line 43
Make tables responsive, when filter is enabled for the field.

Code

function responsive_tables_filter_menu() {
  return array(
    RESPONSIVE_TABLES_FILTER_ADMIN_PATH => array(
      'page callback' => 'drupal_get_form',
      'page arguments' => array(
        'responsive_tables_filter_admin_form',
      ),
      'access arguments' => array(
        'administer views',
      ),
      'title' => 'Responsive Tables',
      'description' => 'Configure which tables should be responsive',
      'file' => 'responsive_tables_filter.admin.inc',
    ),
  );
}