You are here

function views_custom_conditions_views_plugins in Views Custom Conditions 7

Implements hook_views_plugins().

File

./views_custom_conditions.views.inc, line 10
Implements the display extender to add additional setting to views displays.

Code

function views_custom_conditions_views_plugins() {
  $path = drupal_get_path('module', 'views_custom_conditions');
  $plugins = array();
  $plugins['display_extender']['views_custom_conditions'] = array(
    'title' => t('Extender textarea'),
    'help' => t('Add textarea.'),
    'path' => $path,
    'handler' => 'views_custom_conditions_plugin_display_extender_code',
  );
  return $plugins;
}