You are here

views_current_path.views.inc in Views Current Path (Global: Current Path) 8

File

views_current_path.views.inc
View source
<?php

/**
 * Implements hook_views_data_alter().
 */
function views_current_path_views_data_alter(array &$data) {
  $data['views']['current_path'] = array(
    'title' => t('Current Path'),
    'group' => t('Global'),
    'help' => t('The path of the page currently being viewed.'),
    'field' => array(
      'title' => t('Current path'),
      'id' => 'current_path',
    ),
  );
}

Functions