You are here

admin_views.module in Administration Views 7

Same filename and directory in other branches
  1. 6 admin_views.module

Replaces all system object management pages in Drupal core with real views.

File

admin_views.module
View source
<?php

/**
 * @file
 * Replaces all system object management pages in Drupal core with real views.
 */

/**
 * Implements hook_views_api().
 */
function admin_views_views_api() {
  return array(
    'api' => 3,
  );
}

/**
 * Implements hook_help().
 */
function admin_views_help($path, $arg) {
  switch ($path) {
    case 'admin/help#admin_views':
      return t('This module replaces administrative overview/listing pages with actual views for superior usability. It allows a user to sort through large amounts of data more easily with exposed filters. It is also easier to perform bulk operations.');
  }
}

Functions

Namesort descending Description
admin_views_help Implements hook_help().
admin_views_views_api Implements hook_views_api().