You are here

uc_views_bulk_operations.views.inc in Ubercart Views 6.3

Same filename and directory in other branches
  1. 6.2 uc_views_bulk_operations/views/uc_views_bulk_operations.views.inc

Views 2 hooks and callback registries.

File

uc_views_bulk_operations/views/uc_views_bulk_operations.views.inc
View source
<?php

/**
 * @file
 * Views 2 hooks and callback registries.
 */

/**
 * Implementation of hook_views_handlers().
 */
function uc_views_bulk_operations_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'uc_views_bulk_operations') . '/views',
    ),
    'handlers' => array(),
  );
}

/**
 * Conditionally add editablefields support.
 */
function uc_views_bulk_operations_views_tables_alter(&$tables) {
}

Functions

Namesort descending Description
uc_views_bulk_operations_views_handlers Implementation of hook_views_handlers().
uc_views_bulk_operations_views_tables_alter Conditionally add editablefields support.