You are here

function views_current_path_views_data in Views Current Path (Global: Current Path) 7

Implements hook_views_data().

File

./views_current_path.module, line 20
Hooks and related function for Views Current Path.

Code

function views_current_path_views_data() {
  $data['views']['current_path'] = array(
    'title' => t('Current Path'),
    'help' => t('The path of the page currently being viewed.'),
    'field' => array(
      'handler' => 'views_current_path_views_handler_field_current_path',
    ),
  );
  return $data;
}