2009-05-17 11:16:51 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Primarily Drupal hooks and global API functions to manipulate views.
|
|
|
|
*
|
|
|
|
* This is the main module file for Views. The main entry points into
|
|
|
|
* this module are views_page() and views_block(), where it handles
|
|
|
|
* incoming page and block requests.
|
|
|
|
*/
|
|
|
|
|
2013-03-22 09:36:55 +00:00
|
|
|
use Drupal\Core\Cache\Cache;
|
2012-05-15 16:44:31 +00:00
|
|
|
use Drupal\Core\Database\Query\AlterableInterface;
|
2013-05-25 20:12:45 +00:00
|
|
|
use Drupal\Core\Language\Language;
|
2012-09-18 19:41:58 +00:00
|
|
|
use Drupal\views\ViewExecutable;
|
2012-09-06 23:04:19 +00:00
|
|
|
use Drupal\Component\Plugin\Exception\PluginException;
|
2012-10-30 20:37:18 +00:00
|
|
|
use Drupal\views\Plugin\Core\Entity\View;
|
2013-03-13 21:29:08 +00:00
|
|
|
use Drupal\views\Views;
|
2012-05-15 16:44:31 +00:00
|
|
|
|
2009-05-17 11:16:51 +00:00
|
|
|
/**
|
|
|
|
* Implements hook_forms().
|
|
|
|
*
|
|
|
|
* To provide distinct form IDs for Views forms, the View name and
|
|
|
|
* specific display name are appended to the base ID,
|
|
|
|
* views_form_views_form. When such a form is built or submitted, this
|
|
|
|
* function will return the proper callback function to use for the given form.
|
|
|
|
*/
|
|
|
|
function views_forms($form_id, $args) {
|
|
|
|
if (strpos($form_id, 'views_form_') === 0) {
|
|
|
|
return array(
|
|
|
|
$form_id => array(
|
|
|
|
'callback' => 'views_form',
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a form ID for a Views form using the name and display of the View.
|
|
|
|
*/
|
|
|
|
function views_form_id($view) {
|
|
|
|
$parts = array(
|
|
|
|
'views_form',
|
2013-01-19 05:10:42 +00:00
|
|
|
$view->storage->id(),
|
2009-05-17 11:16:51 +00:00
|
|
|
$view->current_display,
|
|
|
|
);
|
|
|
|
|
|
|
|
return implode('_', $parts);
|
|
|
|
}
|
|
|
|
|
2012-09-27 08:51:18 +00:00
|
|
|
/**
|
|
|
|
* Implements hook_element_info().
|
|
|
|
*/
|
|
|
|
function views_element_info() {
|
|
|
|
$types['view'] = array(
|
|
|
|
'#theme_wrappers' => array('container'),
|
|
|
|
'#pre_render' => array('views_pre_render_view_element'),
|
|
|
|
'#name' => NULL,
|
|
|
|
'#display_id' => 'default',
|
|
|
|
'#arguments' => array(),
|
|
|
|
);
|
|
|
|
return $types;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* View element pre render callback.
|
|
|
|
*/
|
|
|
|
function views_pre_render_view_element($element) {
|
|
|
|
$element['#attributes']['class'][] = 'views-element-container';
|
|
|
|
|
|
|
|
$view = views_get_view($element['#name']);
|
|
|
|
if ($view && $view->access($element['#display_id'])) {
|
2013-04-05 22:25:18 +00:00
|
|
|
$element['view'] = $view->preview($element['#display_id'], $element['#arguments']);
|
2012-09-27 08:51:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $element;
|
|
|
|
}
|
|
|
|
|
2009-05-17 11:16:51 +00:00
|
|
|
/**
|
|
|
|
* Implement hook_theme(). Register views theming functions.
|
|
|
|
*/
|
|
|
|
function views_theme($existing, $type, $theme, $path) {
|
2013-04-05 12:32:19 +00:00
|
|
|
Drupal::moduleHandler()->loadInclude('views', 'inc', 'views.theme');
|
2009-05-17 11:16:51 +00:00
|
|
|
|
|
|
|
// Some quasi clever array merging here.
|
|
|
|
$base = array(
|
2012-12-11 20:51:50 +00:00
|
|
|
'file' => 'views.theme.inc',
|
2009-05-17 11:16:51 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
// Our extra version of pager from pager.inc
|
|
|
|
$hooks['views_mini_pager'] = $base + array(
|
|
|
|
'variables' => array('tags' => array(), 'quantity' => 10, 'element' => 0, 'parameters' => array()),
|
|
|
|
'pattern' => 'views_mini_pager__',
|
|
|
|
);
|
|
|
|
|
|
|
|
$variables = array(
|
|
|
|
// For displays, we pass in a dummy array as the first parameter, since
|
|
|
|
// $view is an object but the core contextual_preprocess() function only
|
|
|
|
// attaches contextual links when the primary theme argument is an array.
|
|
|
|
'display' => array('view_array' => array(), 'view' => NULL),
|
|
|
|
'style' => array('view' => NULL, 'options' => NULL, 'rows' => NULL, 'title' => NULL),
|
|
|
|
'row' => array('view' => NULL, 'options' => NULL, 'row' => NULL, 'field_alias' => NULL),
|
|
|
|
'exposed_form' => array('view' => NULL, 'options' => NULL),
|
|
|
|
'pager' => array(
|
|
|
|
'view' => NULL, 'options' => NULL,
|
|
|
|
'tags' => array(), 'quantity' => 10, 'element' => 0, 'parameters' => array()
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
// Default view themes
|
|
|
|
$hooks['views_view_field'] = $base + array(
|
|
|
|
'pattern' => 'views_view_field__',
|
|
|
|
'variables' => array('view' => NULL, 'field' => NULL, 'row' => NULL),
|
|
|
|
);
|
|
|
|
$hooks['views_view_grouping'] = $base + array(
|
|
|
|
'variables' => array('view' => NULL, 'grouping' => NULL, 'grouping_level' => NULL, 'rows' => NULL, 'title' => NULL),
|
2013-05-12 22:30:02 +00:00
|
|
|
'template' => 'views-view-grouping',
|
2009-05-17 11:16:51 +00:00
|
|
|
);
|
|
|
|
|
2012-09-05 17:54:04 +00:00
|
|
|
$plugins = views_get_plugin_definitions();
|
2009-05-17 11:16:51 +00:00
|
|
|
|
|
|
|
// Register theme functions for all style plugins
|
|
|
|
foreach ($plugins as $type => $info) {
|
|
|
|
foreach ($info as $plugin => $def) {
|
2012-12-11 20:51:50 +00:00
|
|
|
// Not all plugins have theme functions, and they can also explicitly
|
|
|
|
// prevent a theme function from being registered automatically.
|
|
|
|
if (!isset($def['theme']) || empty($def['register_theme'])) {
|
|
|
|
continue;
|
|
|
|
}
|
2009-05-17 11:16:51 +00:00
|
|
|
|
2012-12-11 20:51:50 +00:00
|
|
|
$hooks[$def['theme']] = array(
|
|
|
|
'pattern' => $def['theme'] . '__',
|
|
|
|
'variables' => $variables[$type],
|
|
|
|
);
|
2009-05-17 11:16:51 +00:00
|
|
|
|
2012-12-11 20:51:50 +00:00
|
|
|
if ($def['module'] == 'views') {
|
|
|
|
$def['theme_file'] = 'views.theme.inc';
|
|
|
|
}
|
|
|
|
elseif (isset($def['theme_file'])) {
|
|
|
|
$def['theme_path'] = drupal_get_path('module', $def['module']);
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
|
2012-12-11 20:51:50 +00:00
|
|
|
if (isset($def['theme_path'])) {
|
|
|
|
$hooks[$def['theme']]['path'] = $def['theme_path'];
|
|
|
|
}
|
|
|
|
if (isset($def['theme_file'])) {
|
|
|
|
$hooks[$def['theme']]['file'] = $def['theme_file'];
|
|
|
|
}
|
|
|
|
if (isset($def['theme_path']) && isset($def['theme_file'])) {
|
|
|
|
$include = DRUPAL_ROOT . '/' . $def['theme_path'] . '/' . $def['theme_file'];
|
|
|
|
if (is_file($include)) {
|
|
|
|
require_once $include;
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
}
|
2012-12-11 20:51:50 +00:00
|
|
|
if (!function_exists('theme_' . $def['theme'])) {
|
|
|
|
$hooks[$def['theme']]['template'] = drupal_clean_css_identifier($def['theme']);
|
|
|
|
}
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$hooks['views_form_views_form'] = $base + array(
|
|
|
|
'render element' => 'form',
|
|
|
|
);
|
|
|
|
|
|
|
|
$hooks['views_exposed_form'] = $base + array(
|
|
|
|
'template' => 'views-exposed-form',
|
|
|
|
'pattern' => 'views_exposed_form__',
|
|
|
|
'render element' => 'form',
|
|
|
|
);
|
|
|
|
|
|
|
|
$hooks['views_more'] = $base + array(
|
|
|
|
'variables' => array('more_url' => NULL, 'link_text' => 'more', 'view' => NULL),
|
2013-05-24 17:29:53 +00:00
|
|
|
'template' => 'views-more',
|
2009-05-17 11:16:51 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
return $hooks;
|
|
|
|
}
|
|
|
|
|
2012-07-16 17:30:59 +00:00
|
|
|
/**
|
|
|
|
* Returns a list of plugins and metadata about them.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
* An array keyed by PLUGIN_TYPE:PLUGIN_NAME, like 'display:page' or
|
|
|
|
* 'pager:full', containing an array with the following keys:
|
|
|
|
* - title: The plugin's title.
|
|
|
|
* - type: The plugin type.
|
|
|
|
* - module: The module providing the plugin.
|
|
|
|
* - views: An array of enabled Views that are currently using this plugin,
|
|
|
|
* keyed by machine name.
|
|
|
|
*/
|
|
|
|
function views_plugin_list() {
|
2012-09-05 17:54:04 +00:00
|
|
|
$plugin_data = views_get_plugin_definitions();
|
2012-07-16 17:30:59 +00:00
|
|
|
$plugins = array();
|
|
|
|
foreach (views_get_enabled_views() as $view) {
|
2012-11-01 23:30:09 +00:00
|
|
|
foreach ($view->get('display') as $display_id => $display) {
|
2012-07-16 17:30:59 +00:00
|
|
|
foreach ($plugin_data as $type => $info) {
|
2012-09-21 05:53:42 +00:00
|
|
|
if ($type == 'display' && isset($display['display_plugin'])) {
|
|
|
|
$name = $display['display_plugin'];
|
2012-07-16 17:30:59 +00:00
|
|
|
}
|
2012-09-21 05:53:42 +00:00
|
|
|
elseif (isset($display['display_options']["{$type}_plugin"])) {
|
|
|
|
$name = $display['display_options']["{$type}_plugin"];
|
2012-07-16 17:30:59 +00:00
|
|
|
}
|
2012-09-21 05:53:42 +00:00
|
|
|
elseif (isset($display['display_options'][$type]['type'])) {
|
|
|
|
$name = $display['display_options'][$type]['type'];
|
2012-07-16 17:30:59 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Key first by the plugin type, then the name.
|
|
|
|
$key = $type . ':' . $name;
|
|
|
|
// Add info for this plugin.
|
|
|
|
if (!isset($plugins[$key])) {
|
|
|
|
$plugins[$key] = array(
|
|
|
|
'type' => $type,
|
|
|
|
'title' => check_plain($info[$name]['title']),
|
|
|
|
'module' => check_plain($info[$name]['module']),
|
|
|
|
'views' => array(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add this view to the list for this plugin.
|
2013-01-19 05:10:42 +00:00
|
|
|
$plugins[$key]['views'][$view->id()] = $view->id();
|
2012-07-16 17:30:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $plugins;
|
|
|
|
}
|
|
|
|
|
2009-05-17 11:16:51 +00:00
|
|
|
/**
|
|
|
|
* A theme preprocess function to automatically allow view-based node
|
|
|
|
* templates if called from a view.
|
|
|
|
*
|
|
|
|
* The 'modules/node.views.inc' file is a better place for this, but
|
|
|
|
* we haven't got a chance to load that file before Drupal builds the
|
|
|
|
* node portion of the theme registry.
|
|
|
|
*/
|
|
|
|
function views_preprocess_node(&$vars) {
|
2013-04-08 09:40:50 +00:00
|
|
|
Drupal::moduleHandler()->loadInclude('node', 'views.inc');
|
2009-05-17 11:16:51 +00:00
|
|
|
// The 'view' attribute of the node is added in views_preprocess_node()
|
2013-01-19 05:10:42 +00:00
|
|
|
if (!empty($vars['node']->view) && $vars['node']->view->storage->id()) {
|
2009-05-17 11:16:51 +00:00
|
|
|
$vars['view'] = $vars['node']->view;
|
2013-01-19 05:10:42 +00:00
|
|
|
$vars['theme_hook_suggestions'][] = 'node__view__' . $vars['node']->view->storage->id();
|
2009-05-17 11:16:51 +00:00
|
|
|
if (!empty($vars['node']->view->current_display)) {
|
2013-01-19 05:10:42 +00:00
|
|
|
$vars['theme_hook_suggestions'][] = 'node__view__' . $vars['node']->view->storage->id() . '__' . $vars['node']->view->current_display;
|
2009-05-17 11:16:51 +00:00
|
|
|
|
|
|
|
// If a node is being rendered in a view, and the view does not have a path,
|
|
|
|
// prevent drupal from accidentally setting the $page variable:
|
2012-08-30 09:23:13 +00:00
|
|
|
if ($vars['page'] && $vars['view_mode'] == 'full' && !$vars['view']->display_handler->hasPath()) {
|
2009-05-17 11:16:51 +00:00
|
|
|
$vars['page'] = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allow to alter comments and links based on the settings in the row plugin.
|
2013-04-08 09:40:50 +00:00
|
|
|
if (!empty($vars['view']->rowPlugin) && $vars['view']->rowPlugin->getPluginId() == 'node') {
|
2009-05-17 11:16:51 +00:00
|
|
|
node_row_node_view_preprocess_node($vars);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A theme preprocess function to automatically allow view-based node
|
|
|
|
* templates if called from a view.
|
|
|
|
*/
|
|
|
|
function views_preprocess_comment(&$vars) {
|
|
|
|
// The 'view' attribute of the node is added in template_preprocess_views_view_row_comment()
|
2013-01-19 05:10:42 +00:00
|
|
|
if (!empty($vars['comment']->view) && $vars['comment']->view->storage->id()) {
|
2012-10-18 08:33:10 +00:00
|
|
|
$vars['view'] = &$vars['comment']->view;
|
2013-01-19 05:10:42 +00:00
|
|
|
$vars['theme_hook_suggestions'][] = 'comment__view__' . $vars['comment']->view->storage->id();
|
2009-05-17 11:16:51 +00:00
|
|
|
if (!empty($vars['node']->view->current_display)) {
|
2013-01-19 05:10:42 +00:00
|
|
|
$vars['theme_hook_suggestions'][] = 'comment__view__' . $vars['comment']->view->storage->id() . '__' . $vars['comment']->view->current_display;
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-02-27 21:56:29 +00:00
|
|
|
* Implements hook_permission().
|
2009-05-17 11:16:51 +00:00
|
|
|
*/
|
|
|
|
function views_permission() {
|
|
|
|
return array(
|
|
|
|
'access all views' => array(
|
|
|
|
'title' => t('Bypass views access control'),
|
|
|
|
'description' => t('Bypass access control when accessing views.'),
|
2013-02-27 21:56:29 +00:00
|
|
|
'restrict access' => TRUE,
|
2009-05-17 11:16:51 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implement hook_menu().
|
|
|
|
*/
|
|
|
|
function views_menu() {
|
2012-05-15 16:31:32 +00:00
|
|
|
// Any event which causes a menu rebuild could potentially mean that the
|
2009-05-17 11:16:51 +00:00
|
|
|
// Views data is updated -- module changes, profile changes, etc.
|
|
|
|
views_invalidate_cache();
|
|
|
|
$items = array();
|
|
|
|
$items['views/ajax'] = array(
|
|
|
|
'title' => 'Views',
|
|
|
|
'page callback' => 'views_ajax',
|
|
|
|
'theme callback' => 'ajax_base_page_theme',
|
|
|
|
'delivery callback' => 'ajax_deliver',
|
|
|
|
'access callback' => TRUE,
|
|
|
|
'description' => 'Ajax callback for view loading.',
|
|
|
|
'type' => MENU_CALLBACK,
|
|
|
|
'file' => 'includes/ajax.inc',
|
|
|
|
);
|
|
|
|
// Define another taxonomy autocomplete because the default one of drupal
|
|
|
|
// does not support a vid a argument anymore
|
2012-12-03 03:23:33 +00:00
|
|
|
$items['admin/views/ajax/autocomplete/taxonomy/%'] = array(
|
2009-05-17 11:16:51 +00:00
|
|
|
'page callback' => 'views_ajax_autocomplete_taxonomy',
|
|
|
|
'theme callback' => 'ajax_base_page_theme',
|
|
|
|
'access callback' => 'user_access',
|
|
|
|
'access arguments' => array('access content'),
|
|
|
|
'type' => MENU_CALLBACK,
|
|
|
|
'file' => 'includes/ajax.inc',
|
|
|
|
);
|
|
|
|
return $items;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implement hook_menu_alter().
|
|
|
|
*/
|
|
|
|
function views_menu_alter(&$callbacks) {
|
|
|
|
$our_paths = array();
|
2012-07-28 23:20:10 +00:00
|
|
|
$views = views_get_applicable_views('uses_hook_menu');
|
2009-05-17 11:16:51 +00:00
|
|
|
foreach ($views as $data) {
|
|
|
|
list($view, $display_id) = $data;
|
2012-08-29 19:36:52 +00:00
|
|
|
$result = $view->executeHookMenu($display_id, $callbacks);
|
2009-05-17 11:16:51 +00:00
|
|
|
if (is_array($result)) {
|
|
|
|
// The menu system doesn't support having two otherwise
|
|
|
|
// identical paths with different placeholders. So we
|
|
|
|
// want to remove the existing items from the menu whose
|
|
|
|
// paths would conflict with ours.
|
|
|
|
|
|
|
|
// First, we must find any existing menu items that may
|
|
|
|
// conflict. We use a regular expression because we don't
|
|
|
|
// know what placeholders they might use. Note that we
|
|
|
|
// first construct the regex itself by replacing %views_arg
|
|
|
|
// in the display path, then we use this constructed regex
|
|
|
|
// (which will be something like '#^(foo/%[^/]*/bar)$#') to
|
|
|
|
// search through the existing paths.
|
|
|
|
$regex = '#^(' . preg_replace('#%views_arg#', '%[^/]*', implode('|', array_keys($result))) . ')$#';
|
|
|
|
$matches = preg_grep($regex, array_keys($callbacks));
|
|
|
|
|
|
|
|
// Remove any conflicting items that were found.
|
|
|
|
foreach ($matches as $path) {
|
|
|
|
// Don't remove the paths we just added!
|
|
|
|
if (!isset($our_paths[$path])) {
|
|
|
|
unset($callbacks[$path]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
foreach ($result as $path => $item) {
|
|
|
|
if (!isset($callbacks[$path])) {
|
|
|
|
// Add a new item, possibly replacing (and thus effectively
|
|
|
|
// overriding) one that we removed above.
|
|
|
|
$callbacks[$path] = $item;
|
|
|
|
}
|
|
|
|
$our_paths[$path] = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$view->destroy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function for menu loading. This will automatically be
|
|
|
|
* called in order to 'load' a views argument; primarily it
|
|
|
|
* will be used to perform validation.
|
|
|
|
*
|
|
|
|
* @param $value
|
|
|
|
* The actual value passed.
|
|
|
|
* @param $name
|
|
|
|
* The name of the view. This needs to be specified in the 'load function'
|
|
|
|
* of the menu entry.
|
|
|
|
* @param $display_id
|
|
|
|
* The display id that will be loaded for this menu item.
|
|
|
|
* @param $index
|
|
|
|
* The menu argument index. This counts from 1.
|
|
|
|
*/
|
|
|
|
function views_arg_load($value, $name, $display_id, $index) {
|
|
|
|
static $views = array();
|
|
|
|
|
|
|
|
// Make sure we haven't already loaded this views argument for a similar menu
|
|
|
|
// item elsewhere.
|
|
|
|
$key = $name . ':' . $display_id . ':' . $value . ':' . $index;
|
|
|
|
if (isset($views[$key])) {
|
|
|
|
return $views[$key];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($view = views_get_view($name)) {
|
2012-08-29 19:36:52 +00:00
|
|
|
$view->setDisplay($display_id);
|
|
|
|
$view->initHandlers();
|
2009-05-17 11:16:51 +00:00
|
|
|
|
|
|
|
$ids = array_keys($view->argument);
|
|
|
|
|
|
|
|
$indexes = array();
|
2012-08-29 19:36:52 +00:00
|
|
|
$path = explode('/', $view->getPath());
|
2009-05-17 11:16:51 +00:00
|
|
|
|
|
|
|
foreach ($path as $id => $piece) {
|
|
|
|
if ($piece == '%' && !empty($ids)) {
|
|
|
|
$indexes[$id] = array_shift($ids);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($indexes[$index])) {
|
|
|
|
if (isset($view->argument[$indexes[$index]])) {
|
|
|
|
$arg = $view->argument[$indexes[$index]]->validate_argument($value) ? $value : FALSE;
|
|
|
|
$view->destroy();
|
|
|
|
|
|
|
|
// Store the output in case we load this same menu item again.
|
|
|
|
$views[$key] = $arg;
|
|
|
|
return $arg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$view->destroy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Page callback: Displays a page view, given a name and display id.
|
|
|
|
*
|
|
|
|
* @param $name
|
|
|
|
* The name of a view.
|
|
|
|
* @param $display_id
|
|
|
|
* The display id of a view.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* Either the HTML of a fully-executed view, or MENU_NOT_FOUND.
|
|
|
|
*/
|
|
|
|
function views_page($name, $display_id) {
|
|
|
|
$args = func_get_args();
|
|
|
|
// Remove $name and $display_id from the arguments.
|
|
|
|
array_shift($args);
|
|
|
|
array_shift($args);
|
|
|
|
|
|
|
|
// Load the view and render it.
|
|
|
|
if ($view = views_get_view($name)) {
|
2013-06-04 01:05:48 +00:00
|
|
|
if ($output = $view->executeDisplay($display_id, $args)) {
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return array();
|
|
|
|
}
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
|
2013-06-04 01:05:48 +00:00
|
|
|
// Fallback if we get here no view was found.
|
2009-05-17 11:16:51 +00:00
|
|
|
return MENU_NOT_FOUND;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements hook_page_alter().
|
|
|
|
*/
|
|
|
|
function views_page_alter(&$page) {
|
|
|
|
// If the main content of this page contains a view, attach its contextual
|
|
|
|
// links to the overall page array. This allows them to be rendered directly
|
|
|
|
// next to the page title.
|
2012-11-26 18:57:26 +00:00
|
|
|
if ($view = views_get_page_view()) {
|
2009-05-17 11:16:51 +00:00
|
|
|
views_add_contextual_links($page, 'page', $view, $view->current_display);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements MODULE_preprocess_HOOK().
|
|
|
|
*/
|
|
|
|
function views_preprocess_html(&$variables) {
|
2013-05-20 08:35:41 +00:00
|
|
|
// Early-return to prevent adding unnecessary JavaScript.
|
|
|
|
if (!user_access('access contextual links')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-05-17 11:16:51 +00:00
|
|
|
// If the page contains a view as its main content, contextual links may have
|
|
|
|
// been attached to the page as a whole; for example, by views_page_alter().
|
|
|
|
// This allows them to be associated with the page and rendered by default
|
|
|
|
// next to the page title (which we want). However, it also causes the
|
|
|
|
// Contextual Links module to treat the wrapper for the entire page (i.e.,
|
|
|
|
// the <body> tag) as the HTML element that these contextual links are
|
|
|
|
// associated with. This we don't want; for better visual highlighting, we
|
|
|
|
// prefer a smaller region to be chosen. The region we prefer differs from
|
|
|
|
// theme to theme and depends on the details of the theme's markup in
|
|
|
|
// page.tpl.php, so we can only find it using JavaScript. We therefore remove
|
2012-08-07 13:43:42 +00:00
|
|
|
// the "contextual-region" class from the <body> tag here and add
|
2009-05-17 11:16:51 +00:00
|
|
|
// JavaScript that will insert it back in the correct place.
|
2013-05-20 08:35:41 +00:00
|
|
|
if (!empty($variables['page']['#views_contextual_links'])) {
|
2013-05-05 20:52:35 +00:00
|
|
|
$key = array_search('contextual-region', $variables['attributes']['class']);
|
2009-05-17 11:16:51 +00:00
|
|
|
if ($key !== FALSE) {
|
2012-08-07 13:43:42 +00:00
|
|
|
unset($variables['attributes']['class'][$key]);
|
2013-05-20 08:35:41 +00:00
|
|
|
$variables['attributes']['data-views-page-contextual-id'] = $variables['title_suffix']['contextual_links']['#id'];
|
2009-05-17 11:16:51 +00:00
|
|
|
// Add the JavaScript, with a group and weight such that it will run
|
|
|
|
// before modules/contextual/contextual.js.
|
2013-03-05 03:59:53 +00:00
|
|
|
drupal_add_library('views', 'views.contextual-links');
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds contextual links associated with a view display to a renderable array.
|
|
|
|
*
|
|
|
|
* This function should be called when a view is being rendered in a particular
|
|
|
|
* location and you want to attach the appropriate contextual links (e.g.,
|
|
|
|
* links for editing the view) to it.
|
|
|
|
*
|
|
|
|
* The function operates by checking the view's display plugin to see if it has
|
|
|
|
* defined any contextual links that are intended to be displayed in the
|
|
|
|
* requested location; if so, it attaches them. The contextual links intended
|
|
|
|
* for a particular location are defined by the 'contextual links' and
|
2012-10-17 16:12:25 +00:00
|
|
|
* 'contextual_links_locations' properties in the plugin annotation; as a
|
|
|
|
* result, these hook implementations have full control over where and how
|
|
|
|
* contextual links are rendered for each display.
|
2009-05-17 11:16:51 +00:00
|
|
|
*
|
|
|
|
* In addition to attaching the contextual links to the passed-in array (via
|
|
|
|
* the standard #contextual_links property), this function also attaches
|
|
|
|
* additional information via the #views_contextual_links_info property. This
|
|
|
|
* stores an array whose keys are the names of each module that provided
|
|
|
|
* views-related contextual links (same as the keys of the #contextual_links
|
|
|
|
* array itself) and whose values are themselves arrays whose keys ('location',
|
|
|
|
* 'view_name', and 'view_display_id') store the location, name of the view,
|
|
|
|
* and display ID that were passed in to this function. This allows you to
|
|
|
|
* access information about the contextual links and how they were generated in
|
|
|
|
* a variety of contexts where you might be manipulating the renderable array
|
|
|
|
* later on (for example, alter hooks which run later during the same page
|
|
|
|
* request).
|
|
|
|
*
|
|
|
|
* @param $render_element
|
|
|
|
* The renderable array to which contextual links will be added. This array
|
|
|
|
* should be suitable for passing in to drupal_render() and will normally
|
|
|
|
* contain a representation of the view display whose contextual links are
|
|
|
|
* being requested.
|
|
|
|
* @param $location
|
|
|
|
* The location in which the calling function intends to render the view and
|
|
|
|
* its contextual links. The core system supports three options for this
|
|
|
|
* parameter:
|
|
|
|
* - 'block': Used when rendering a block which contains a view. This
|
|
|
|
* retrieves any contextual links intended to be attached to the block
|
|
|
|
* itself.
|
|
|
|
* - 'page': Used when rendering the main content of a page which contains a
|
|
|
|
* view. This retrieves any contextual links intended to be attached to the
|
|
|
|
* page itself (for example, links which are displayed directly next to the
|
|
|
|
* page title).
|
|
|
|
* - 'view': Used when rendering the view itself, in any context. This
|
|
|
|
* retrieves any contextual links intended to be attached directly to the
|
|
|
|
* view.
|
|
|
|
* If you are rendering a view and its contextual links in another location,
|
|
|
|
* you can pass in a different value for this parameter. However, you will
|
2012-10-17 16:12:25 +00:00
|
|
|
* also need to set 'contextual_links_locations' in your plugin annotation to
|
|
|
|
* indicate which view displays support having their contextual links
|
|
|
|
* rendered in the location you have defined.
|
2009-05-17 11:16:51 +00:00
|
|
|
* @param $view
|
|
|
|
* The view whose contextual links will be added.
|
|
|
|
* @param $display_id
|
|
|
|
* The ID of the display within $view whose contextual links will be added.
|
|
|
|
*
|
2013-05-11 10:01:25 +00:00
|
|
|
* @see \Drupal\views\Plugin\block\block\ViewsBlock::addContextualLinks()
|
2009-05-17 11:16:51 +00:00
|
|
|
* @see views_page_alter()
|
|
|
|
* @see template_preprocess_views_view()
|
|
|
|
*/
|
2012-09-23 19:09:23 +00:00
|
|
|
function views_add_contextual_links(&$render_element, $location, ViewExecutable $view, $display_id) {
|
2009-05-17 11:16:51 +00:00
|
|
|
// Do not do anything if the view is configured to hide its administrative
|
|
|
|
// links.
|
2013-04-20 03:41:20 +00:00
|
|
|
if ($view->getShowAdminLinks()) {
|
2009-05-17 11:16:51 +00:00
|
|
|
// Also do not do anything if the display plugin has not defined any
|
|
|
|
// contextual links that are intended to be displayed in the requested
|
|
|
|
// location.
|
2013-01-15 16:34:32 +00:00
|
|
|
$plugin_id = $view->displayHandlers->get($display_id)->getPluginId();
|
2013-03-13 21:29:08 +00:00
|
|
|
$plugin = Views::pluginManager('display')->getDefinition($plugin_id);
|
2012-07-28 23:20:10 +00:00
|
|
|
// If contextual_links_locations are not set, provide a sane default. (To
|
2009-05-17 11:16:51 +00:00
|
|
|
// avoid displaying any contextual links at all, a display plugin can still
|
2012-07-28 23:20:10 +00:00
|
|
|
// set 'contextual_links_locations' to, e.g., {""}.)
|
2012-07-29 01:27:05 +00:00
|
|
|
|
|
|
|
if (!isset($plugin['contextual_links_locations'])) {
|
|
|
|
$plugin['contextual_links_locations'] = array('view');
|
2012-07-28 23:20:10 +00:00
|
|
|
}
|
2012-10-04 20:27:16 +00:00
|
|
|
elseif ($plugin['contextual_links_locations'] == array() || $plugin['contextual_links_locations'] == array('')) {
|
2012-07-28 23:20:10 +00:00
|
|
|
$plugin['contextual_links_locations'] = array();
|
|
|
|
}
|
2012-07-29 01:27:05 +00:00
|
|
|
else {
|
|
|
|
$plugin += array('contextual_links_locations' => array('view'));
|
|
|
|
}
|
|
|
|
|
2009-05-17 11:16:51 +00:00
|
|
|
// On exposed_forms blocks contextual links should always be visible.
|
2013-01-30 05:32:18 +00:00
|
|
|
$plugin['contextual_links_locations'][] = 'exposed_filter';
|
2012-07-28 23:20:10 +00:00
|
|
|
$has_links = !empty($plugin['contextual links']) && !empty($plugin['contextual_links_locations']);
|
|
|
|
if ($has_links && in_array($location, $plugin['contextual_links_locations'])) {
|
2009-05-17 11:16:51 +00:00
|
|
|
foreach ($plugin['contextual links'] as $module => $link) {
|
|
|
|
$args = array();
|
|
|
|
$valid = TRUE;
|
|
|
|
if (!empty($link['argument properties'])) {
|
|
|
|
foreach ($link['argument properties'] as $property) {
|
|
|
|
// If the plugin is trying to create an invalid contextual link
|
2012-10-04 20:27:16 +00:00
|
|
|
// (for example, "path/to/{$view->storage->property}", where
|
|
|
|
// $view->storage->{property} does not exist), we cannot construct
|
|
|
|
// the link, so we skip it.
|
|
|
|
if (!property_exists($view->storage, $property)) {
|
2009-05-17 11:16:51 +00:00
|
|
|
$valid = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else {
|
2012-10-04 20:27:16 +00:00
|
|
|
$args[] = $view->storage->{$property};
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// If the link was valid, attach information about it to the renderable
|
|
|
|
// array.
|
|
|
|
if ($valid) {
|
2013-05-20 08:35:41 +00:00
|
|
|
$render_element['#views_contextual_links'] = TRUE;
|
|
|
|
$render_element['#contextual_links'][$module] = array(
|
|
|
|
$link['parent path'],
|
|
|
|
$args,
|
|
|
|
array(
|
|
|
|
'location' => $location,
|
|
|
|
'name' => $view->storage->id(),
|
|
|
|
'display_id' => $display_id,
|
|
|
|
)
|
2009-05-17 11:16:51 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-11-13 23:15:30 +00:00
|
|
|
* Prepares a list of language names.
|
2009-05-17 11:16:51 +00:00
|
|
|
*
|
2012-11-13 23:15:30 +00:00
|
|
|
* This is a wrapper around language_list to return a plain key value array.
|
2009-05-17 11:16:51 +00:00
|
|
|
*
|
2012-11-13 23:15:30 +00:00
|
|
|
* @param string $field
|
|
|
|
* The field of the language object which should be used as the value of the
|
|
|
|
* array.
|
|
|
|
* @param int $flags
|
|
|
|
* (optional) Specifies the state of the languages that have to be returned.
|
2013-05-25 20:12:45 +00:00
|
|
|
* It can be: Language::STATE_CONFIGURABLE, Language::STATE_LOCKED,
|
|
|
|
* Language::STATE_ALL.
|
2012-11-13 23:15:30 +00:00
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
* An array of language names (or $field) keyed by the langcode.
|
2009-05-17 11:16:51 +00:00
|
|
|
*
|
|
|
|
* @see locale_language_list()
|
|
|
|
*/
|
2013-05-25 20:12:45 +00:00
|
|
|
function views_language_list($field = 'name', $flags = Language::STATE_ALL) {
|
2012-11-13 23:15:30 +00:00
|
|
|
$languages = language_list($flags);
|
2009-05-17 11:16:51 +00:00
|
|
|
$list = array();
|
|
|
|
foreach ($languages as $language) {
|
2012-08-26 19:44:59 +00:00
|
|
|
$list[$language->langcode] = ($field == 'name') ? t($language->name) : $language->$field;
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
return $list;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements hook_field_create_instance.
|
|
|
|
*/
|
|
|
|
function views_field_create_instance($instance) {
|
2012-11-28 21:36:29 +00:00
|
|
|
cache('views_info')->deleteAll();
|
|
|
|
cache('views_results')->deleteAll();
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Implements hook_field_update_instance.
|
|
|
|
*/
|
|
|
|
function views_field_update_instance($instance, $prior_instance) {
|
2012-11-28 21:36:29 +00:00
|
|
|
cache('views_info')->deleteAll();
|
|
|
|
cache('views_results')->deleteAll();
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements hook_field_delete_instance.
|
|
|
|
*/
|
|
|
|
function views_field_delete_instance($instance) {
|
2012-11-28 21:36:29 +00:00
|
|
|
cache('views_info')->deleteAll();
|
|
|
|
cache('views_results')->deleteAll();
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invalidate the views cache, forcing a rebuild on the next grab of table data.
|
|
|
|
*/
|
|
|
|
function views_invalidate_cache() {
|
2012-08-12 15:52:02 +00:00
|
|
|
// Clear the views cache.
|
2012-11-28 21:36:29 +00:00
|
|
|
cache('views_info')->deleteAll();
|
2012-08-12 15:52:02 +00:00
|
|
|
|
|
|
|
// Clear the page and block cache.
|
2013-03-22 09:36:55 +00:00
|
|
|
Cache::deleteTags(array('content' => TRUE));
|
2012-08-12 15:52:02 +00:00
|
|
|
|
|
|
|
// Set the menu as needed to be rebuilt.
|
2012-09-20 13:07:18 +00:00
|
|
|
state()->set('menu_rebuild_needed', TRUE);
|
2012-08-12 15:52:02 +00:00
|
|
|
|
2013-04-05 12:32:19 +00:00
|
|
|
$module_handler = Drupal::moduleHandler();
|
|
|
|
|
2013-05-25 17:34:58 +00:00
|
|
|
// Set the router to be rebuild.
|
|
|
|
// @todo Figure out why the cache rebuild is trigged but the route table
|
|
|
|
// does not exist yet.
|
|
|
|
if (db_table_exists('router')) {
|
|
|
|
Drupal::service('router.builder')->rebuild();
|
|
|
|
}
|
|
|
|
|
Issue #1535868 by EclipseGc, tim.plunkett, xjm, Jody Lynn, sdboyer, naxoc, tizzo, effulgentsia, dawehner, disasm, beejeebus: Convert all blocks into plugins.
2013-01-04 17:05:13 +00:00
|
|
|
// Invalidate the block cache to update views block derivatives.
|
2013-04-05 12:32:19 +00:00
|
|
|
if ($module_handler->moduleExists('block')) {
|
|
|
|
Drupal::service('plugin.manager.block')->clearCachedDefinitions();
|
Issue #1535868 by EclipseGc, tim.plunkett, xjm, Jody Lynn, sdboyer, naxoc, tizzo, effulgentsia, dawehner, disasm, beejeebus: Convert all blocks into plugins.
2013-01-04 17:05:13 +00:00
|
|
|
}
|
|
|
|
|
2012-08-12 15:52:02 +00:00
|
|
|
// Allow modules to respond to the Views cache being cleared.
|
2013-04-05 12:32:19 +00:00
|
|
|
$module_handler->invokeAll('views_invalidate_cache');
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the current 'page view' that is being displayed so that it is easy
|
|
|
|
* for other modules or the theme to identify.
|
|
|
|
*/
|
|
|
|
function &views_set_page_view($view = NULL) {
|
|
|
|
static $cache = NULL;
|
|
|
|
if (isset($view)) {
|
|
|
|
$cache = $view;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $cache;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-04-15 10:00:23 +00:00
|
|
|
* Find out what, if any, page view is currently in use.
|
2009-05-17 11:16:51 +00:00
|
|
|
*
|
2013-04-15 10:00:23 +00:00
|
|
|
* Note that this returns a reference, so be careful! You can unintentionally
|
|
|
|
* modify the $view object.
|
|
|
|
*
|
|
|
|
* @return \Drupal\views\ViewExecutable
|
2009-05-17 11:16:51 +00:00
|
|
|
* A fully formed, empty $view object.
|
|
|
|
*/
|
|
|
|
function &views_get_page_view() {
|
|
|
|
return views_set_page_view();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the current 'current view' that is being built/rendered so that it is
|
|
|
|
* easy for other modules or items in drupal_eval to identify
|
|
|
|
*
|
2012-09-18 19:41:58 +00:00
|
|
|
* @return Drupal\views\ViewExecutable
|
2009-05-17 11:16:51 +00:00
|
|
|
*/
|
|
|
|
function &views_set_current_view($view = NULL) {
|
|
|
|
static $cache = NULL;
|
|
|
|
if (isset($view)) {
|
|
|
|
$cache = $view;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $cache;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-04-15 10:00:23 +00:00
|
|
|
* Find out what, if any, current view is currently in use.
|
2009-05-17 11:16:51 +00:00
|
|
|
*
|
2013-04-15 10:00:23 +00:00
|
|
|
* Note that this returns a reference, so be careful! You can unintentionally
|
|
|
|
* modify the $view object.
|
|
|
|
*
|
|
|
|
* @return \Drupal\views\ViewExecutable
|
2013-04-16 19:53:13 +00:00
|
|
|
* The current view object.
|
2009-05-17 11:16:51 +00:00
|
|
|
*/
|
|
|
|
function &views_get_current_view() {
|
|
|
|
return views_set_current_view();
|
|
|
|
}
|
|
|
|
|
2012-09-13 15:06:25 +00:00
|
|
|
/**
|
|
|
|
* Implements hook_hook_info().
|
|
|
|
*/
|
|
|
|
function views_hook_info() {
|
2013-04-10 20:12:01 +00:00
|
|
|
$hooks = array();
|
|
|
|
|
|
|
|
$hooks += array_fill_keys(array(
|
|
|
|
'views_data',
|
|
|
|
'views_data_alter',
|
|
|
|
'views_analyze',
|
|
|
|
'views_invalidate_cache',
|
|
|
|
), array('group' => 'views'));
|
|
|
|
|
|
|
|
$hooks += array_fill_keys(array(
|
|
|
|
'views_query_substitutions',
|
|
|
|
'views_form_substitutions',
|
|
|
|
'views_pre_view',
|
|
|
|
'views_pre_build',
|
|
|
|
'views_post_build',
|
|
|
|
'views_pre_execute',
|
|
|
|
'views_post_execute',
|
|
|
|
'views_pre_render',
|
|
|
|
'views_post_render',
|
|
|
|
'views_query_alter',
|
|
|
|
), array('group' => 'views_execution'));
|
2012-09-13 15:06:25 +00:00
|
|
|
|
|
|
|
return $hooks;
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-12-04 15:49:07 +00:00
|
|
|
* Implements hook_library_info().
|
|
|
|
*/
|
|
|
|
function views_library_info() {
|
|
|
|
$path = drupal_get_path('module', 'views') . '/js';
|
|
|
|
$libraries['views.ajax'] = array(
|
|
|
|
'title' => 'Views AJAX',
|
|
|
|
'version' => VERSION,
|
|
|
|
'js' => array(
|
|
|
|
"$path/base.js" => array('group' => JS_DEFAULT),
|
|
|
|
"$path/ajax_view.js" => array('group' => JS_DEFAULT),
|
|
|
|
),
|
|
|
|
'dependencies' => array(
|
|
|
|
array('system', 'jquery'),
|
|
|
|
array('system', 'drupal'),
|
|
|
|
array('system', 'drupalSettings'),
|
|
|
|
array('system', 'jquery.once'),
|
|
|
|
array('system', 'jquery.form'),
|
|
|
|
array('system', 'drupal.ajax'),
|
|
|
|
),
|
|
|
|
);
|
2013-03-05 03:59:53 +00:00
|
|
|
$libraries['views.contextual-links'] = array(
|
|
|
|
'title' => 'Views Contextual links',
|
|
|
|
'version' => VERSION,
|
|
|
|
'js' => array(
|
|
|
|
"$path/views-contextual.js" => array('group' => JS_LIBRARY, 'weight' => -10),
|
|
|
|
),
|
|
|
|
'dependencies' => array(
|
|
|
|
array('system', 'jquery'),
|
|
|
|
array('system', 'drupal'),
|
|
|
|
),
|
|
|
|
);
|
2009-05-17 11:16:51 +00:00
|
|
|
|
2012-12-04 15:49:07 +00:00
|
|
|
return $libraries;
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetch a handler from the data cache.
|
|
|
|
*
|
2013-04-14 20:15:54 +00:00
|
|
|
* @param array $item
|
|
|
|
* An associative array representing the handler to be retrieved:
|
|
|
|
* - table: The name of the table containing the handler.
|
|
|
|
* - field: The name of the field the handler represents.
|
|
|
|
* - optional: (optional) Whether or not this handler is optional. If a
|
|
|
|
* handler is missing and not optional, a debug message will be displayed.
|
|
|
|
* Defaults to FALSE.
|
|
|
|
* @param string $type
|
2009-05-17 11:16:51 +00:00
|
|
|
* The type of handler. i.e, sort, field, argument, filter, relationship
|
2013-04-14 20:15:54 +00:00
|
|
|
* @param string|null $override
|
|
|
|
* (optional) Override the actual handler object with this plugin ID. Used for
|
|
|
|
* aggregation when the handler is redirected to the aggregation handler.
|
2009-05-17 11:16:51 +00:00
|
|
|
*
|
|
|
|
* @return views_handler
|
|
|
|
* An instance of a handler object. May be views_handler_broken.
|
|
|
|
*/
|
2013-04-14 20:15:54 +00:00
|
|
|
function views_get_handler($item, $type, $override = NULL) {
|
|
|
|
$table = $item['table'];
|
|
|
|
$field = $item['field'];
|
|
|
|
$optional = isset($item['optional']) ? $item['optional'] : FALSE;
|
2012-10-10 23:36:49 +00:00
|
|
|
// Get the plugin manager for this type.
|
2013-03-13 21:29:08 +00:00
|
|
|
$manager = Views::pluginManager($type);;
|
|
|
|
$data = Views::viewsData()->get($table);
|
2009-05-17 11:16:51 +00:00
|
|
|
|
2012-10-10 23:36:49 +00:00
|
|
|
if (isset($data[$field][$type])) {
|
2012-09-06 23:04:19 +00:00
|
|
|
$definition = $data[$field][$type];
|
2012-09-19 14:59:17 +00:00
|
|
|
foreach (array('group', 'title', 'title short', 'help', 'real field', 'real table') as $key) {
|
2012-09-05 17:54:08 +00:00
|
|
|
if (!isset($definition[$key])) {
|
|
|
|
// First check the field level
|
|
|
|
if (!empty($data[$field][$key])) {
|
|
|
|
$definition[$key] = $data[$field][$key];
|
|
|
|
}
|
|
|
|
// Then if that doesn't work, check the table level
|
|
|
|
elseif (!empty($data['table'][$key])) {
|
|
|
|
$definition[$key] = $data['table'][$key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// @todo This is crazy. Find a way to remove the override functionality.
|
2012-10-10 23:36:49 +00:00
|
|
|
$plugin_id = $override ?: $definition['id'];
|
2012-09-06 23:04:19 +00:00
|
|
|
// Try to use the overridden handler.
|
2012-09-05 17:54:08 +00:00
|
|
|
try {
|
2012-09-06 23:04:19 +00:00
|
|
|
return $manager->createInstance($plugin_id, $definition);
|
2012-09-05 17:54:08 +00:00
|
|
|
}
|
|
|
|
catch (PluginException $e) {
|
2012-09-06 23:04:19 +00:00
|
|
|
// If that fails, use the original handler.
|
|
|
|
try {
|
|
|
|
return $manager->createInstance($definition['id'], $definition);
|
|
|
|
}
|
|
|
|
catch (PluginException $e) {
|
|
|
|
// Deliberately empty, this case is handled generically below.
|
|
|
|
}
|
2012-09-05 17:54:08 +00:00
|
|
|
}
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
|
2013-04-14 20:15:54 +00:00
|
|
|
if (!$optional) {
|
2013-05-31 04:11:04 +00:00
|
|
|
//debug(t("Missing handler: @table @field @type", array('@table' => $table, '@field' => $field, '@type' => $type)));
|
2013-04-14 20:15:54 +00:00
|
|
|
}
|
|
|
|
|
2012-09-06 23:04:19 +00:00
|
|
|
// Finally, use the 'broken' handler.
|
2012-10-10 23:36:49 +00:00
|
|
|
return $manager->createInstance('broken');
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetch a list of all base tables available
|
|
|
|
*
|
|
|
|
* @param $type
|
|
|
|
* Either 'display', 'style' or 'row'
|
|
|
|
* @param $key
|
|
|
|
* For style plugins, this is an optional type to restrict to. May be 'normal',
|
|
|
|
* 'summary', 'feed' or others based on the neds of the display.
|
|
|
|
* @param $base
|
|
|
|
* An array of possible base tables.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* A keyed array of in the form of 'base_table' => 'Description'.
|
|
|
|
*/
|
|
|
|
function views_fetch_plugin_names($type, $key = NULL, $base = array()) {
|
2013-03-13 21:29:08 +00:00
|
|
|
$definitions = Views::pluginManager($type)->getDefinitions();
|
2012-07-28 23:20:10 +00:00
|
|
|
$plugins = array();
|
2009-05-17 11:16:51 +00:00
|
|
|
|
2012-08-11 11:46:07 +00:00
|
|
|
foreach ($definitions as $id => $plugin) {
|
2013-04-13 05:20:07 +00:00
|
|
|
// Skip plugins that don't conform to our key, if they have one.
|
|
|
|
if ($key && isset($plugin['display_types']) && !in_array($key, $plugin['display_types'])) {
|
2012-08-14 00:15:48 +00:00
|
|
|
continue;
|
|
|
|
}
|
2012-07-29 19:27:30 +00:00
|
|
|
|
2012-08-26 18:53:58 +00:00
|
|
|
if (empty($plugin['no_ui']) && (empty($base) || empty($plugin['base']) || array_intersect($base, $plugin['base']))) {
|
2012-08-11 11:46:07 +00:00
|
|
|
$plugins[$id] = $plugin['title'];
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-28 23:20:10 +00:00
|
|
|
if (!empty($plugins)) {
|
|
|
|
asort($plugins);
|
|
|
|
return $plugins;
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
2012-07-29 01:27:05 +00:00
|
|
|
|
2013-04-13 05:20:07 +00:00
|
|
|
return $plugins;
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
|
2012-09-05 17:54:04 +00:00
|
|
|
/**
|
2012-09-05 17:54:08 +00:00
|
|
|
* Gets all the views plugin definitions.
|
|
|
|
*
|
|
|
|
* @return array
|
2012-11-29 06:20:24 +00:00
|
|
|
* An array of plugin definitions for all types.
|
2012-09-05 17:54:04 +00:00
|
|
|
*/
|
2012-11-29 06:20:24 +00:00
|
|
|
function views_get_plugin_definitions() {
|
|
|
|
$plugins = array();
|
|
|
|
foreach (ViewExecutable::getPluginTypes() as $plugin_type) {
|
2013-04-05 12:32:19 +00:00
|
|
|
$plugins[$plugin_type] = Views::pluginManager($plugin_type)->getDefinitions();
|
2012-09-05 17:54:04 +00:00
|
|
|
}
|
|
|
|
|
2012-11-29 06:20:24 +00:00
|
|
|
return $plugins;
|
2012-08-19 13:19:00 +00:00
|
|
|
}
|
|
|
|
|
2012-07-28 23:20:10 +00:00
|
|
|
/**
|
|
|
|
* Get enabled display extenders.
|
|
|
|
*/
|
|
|
|
function views_get_enabled_display_extenders() {
|
2012-08-16 17:31:24 +00:00
|
|
|
$enabled = array_filter((array) config('views.settings')->get('display_extenders'));
|
2012-07-28 23:20:10 +00:00
|
|
|
|
2012-10-07 15:21:23 +00:00
|
|
|
return drupal_map_assoc($enabled);
|
2012-07-28 23:20:10 +00:00
|
|
|
}
|
|
|
|
|
2009-05-17 11:16:51 +00:00
|
|
|
/**
|
|
|
|
* Return a list of all views and display IDs that have a particular
|
|
|
|
* setting in their display's plugin settings.
|
|
|
|
*
|
2013-01-30 03:42:19 +00:00
|
|
|
* @param string $type
|
|
|
|
* A flag from the display plugin definitions (e.g, 'uses_hook_menu').
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
* A list of arrays containing the $view and $display_id.
|
2009-05-17 11:16:51 +00:00
|
|
|
* @code
|
|
|
|
* array(
|
|
|
|
* array($view, $display_id),
|
|
|
|
* array($view, $display_id),
|
|
|
|
* );
|
|
|
|
* @endcode
|
|
|
|
*/
|
|
|
|
function views_get_applicable_views($type) {
|
2013-01-30 03:42:19 +00:00
|
|
|
// Get all display plugins which provides the type.
|
2013-04-05 12:32:19 +00:00
|
|
|
$display_plugins = Views::pluginManager('display')->getDefinitions();
|
2013-01-30 03:42:19 +00:00
|
|
|
$ids = array();
|
|
|
|
foreach ($display_plugins as $id => $definition) {
|
|
|
|
if (!empty($definition[$type])) {
|
|
|
|
$ids[$id] = $id;
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
2013-01-30 03:42:19 +00:00
|
|
|
}
|
2009-05-17 11:16:51 +00:00
|
|
|
|
2013-04-05 12:32:19 +00:00
|
|
|
$entity_ids = Drupal::service('entity.query')->get('view')
|
2013-02-06 12:00:39 +00:00
|
|
|
->condition('status', TRUE)
|
2013-01-30 03:42:19 +00:00
|
|
|
->condition("display.*.display_plugin", $ids, 'IN')
|
|
|
|
->execute();
|
2009-05-17 11:16:51 +00:00
|
|
|
|
2013-01-30 03:42:19 +00:00
|
|
|
$result = array();
|
2013-05-02 06:42:27 +00:00
|
|
|
foreach (Drupal::entityManager()->getStorageController('view')->load($entity_ids) as $view) {
|
2012-12-08 23:21:07 +00:00
|
|
|
// Check each display to see if it meets the criteria and is enabled.
|
|
|
|
$executable = $view->get('executable');
|
2013-01-30 03:42:19 +00:00
|
|
|
$executable->initDisplay();
|
2012-12-08 23:21:07 +00:00
|
|
|
foreach ($executable->displayHandlers as $id => $handler) {
|
|
|
|
if (!empty($handler->definition[$type]) && $handler->isEnabled()) {
|
|
|
|
$result[] = array($executable, $id);
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-01-30 03:42:19 +00:00
|
|
|
|
2009-05-17 11:16:51 +00:00
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-10-07 22:53:31 +00:00
|
|
|
* Returns an array of all views as fully loaded $view objects.
|
2009-05-17 11:16:51 +00:00
|
|
|
*/
|
2012-10-07 22:53:31 +00:00
|
|
|
function views_get_all_views() {
|
2013-05-02 06:42:27 +00:00
|
|
|
return Drupal::entityManager()->getStorageController('view')->load();
|
2012-08-26 21:25:31 +00:00
|
|
|
}
|
|
|
|
|
2009-05-17 11:16:51 +00:00
|
|
|
/**
|
|
|
|
* Returns an array of all enabled views, as fully loaded $view objects.
|
|
|
|
*/
|
|
|
|
function views_get_enabled_views() {
|
2013-04-11 12:55:05 +00:00
|
|
|
$query = Drupal::entityQuery('view')
|
2013-02-09 05:28:35 +00:00
|
|
|
->condition('status', TRUE)
|
|
|
|
->execute();
|
|
|
|
|
|
|
|
return entity_load_multiple('view', $query);
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an array of all disabled views, as fully loaded $view objects.
|
|
|
|
*/
|
|
|
|
function views_get_disabled_views() {
|
2013-04-11 12:55:05 +00:00
|
|
|
$query = Drupal::entityQuery('view')
|
2013-02-09 05:28:35 +00:00
|
|
|
->condition('status', FALSE)
|
|
|
|
->execute();
|
|
|
|
|
|
|
|
return entity_load_multiple('view', $query);
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return an array of view as options array, that can be used by select,
|
|
|
|
* checkboxes and radios as #options.
|
|
|
|
*
|
|
|
|
* @param bool $views_only
|
|
|
|
* If TRUE, only return views, not displays.
|
|
|
|
* @param string $filter
|
|
|
|
* Filters the views on status. Can either be 'all' (default), 'enabled' or
|
|
|
|
* 'disabled'
|
|
|
|
* @param mixed $exclude_view
|
|
|
|
* view or current display to exclude
|
|
|
|
* either a
|
2012-09-23 18:16:12 +00:00
|
|
|
* - views object (containing $exclude_view->storage->name and $exclude_view->current_display)
|
2009-05-17 11:16:51 +00:00
|
|
|
* - views name as string: e.g. my_view
|
|
|
|
* - views name and display id (separated by ':'): e.g. my_view:default
|
|
|
|
* @param bool $optgroup
|
|
|
|
* If TRUE, returns an array with optgroups for each view (will be ignored for
|
|
|
|
* $views_only = TRUE). Can be used by select
|
2012-07-22 20:31:25 +00:00
|
|
|
* @param bool $sort
|
|
|
|
* If TRUE, the list of views is sorted ascending.
|
2009-05-17 11:16:51 +00:00
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
* an associative array for use in select.
|
|
|
|
* - key: view name and display id separated by ':', or the view name only
|
|
|
|
*/
|
2012-07-22 20:31:25 +00:00
|
|
|
function views_get_views_as_options($views_only = FALSE, $filter = 'all', $exclude_view = NULL, $optgroup = FALSE, $sort = FALSE) {
|
2009-05-17 11:16:51 +00:00
|
|
|
|
|
|
|
// Filter the big views array.
|
|
|
|
switch ($filter) {
|
|
|
|
case 'all':
|
|
|
|
case 'disabled':
|
|
|
|
case 'enabled':
|
|
|
|
$func = "views_get_{$filter}_views";
|
|
|
|
$views = $func();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prepare exclude view strings for comparison.
|
|
|
|
if (empty($exclude_view)) {
|
|
|
|
$exclude_view_name = '';
|
|
|
|
$exclude_view_display = '';
|
|
|
|
}
|
|
|
|
elseif (is_object($exclude_view)) {
|
2012-10-01 17:04:55 +00:00
|
|
|
$exclude_view_name = $exclude_view->storage->id();
|
2009-05-17 11:16:51 +00:00
|
|
|
$exclude_view_display = $exclude_view->current_display;
|
|
|
|
}
|
|
|
|
else {
|
2012-10-01 17:04:55 +00:00
|
|
|
// Append a ':' to the $exclude_view string so we always have more than one
|
|
|
|
// item to explode.
|
|
|
|
list($exclude_view_name, $exclude_view_display) = explode(':', "$exclude_view:");
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$options = array();
|
|
|
|
foreach ($views as $view) {
|
2012-10-01 17:04:55 +00:00
|
|
|
$id = $view->id();
|
2009-05-17 11:16:51 +00:00
|
|
|
// Return only views.
|
2012-10-01 17:04:55 +00:00
|
|
|
if ($views_only && $id != $exclude_view_name) {
|
2013-04-03 19:57:49 +00:00
|
|
|
$options[$id] = $view->label();
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
// Return views with display ids.
|
|
|
|
else {
|
2012-11-01 23:30:09 +00:00
|
|
|
foreach ($view->get('display') as $display_id => $display) {
|
2012-10-01 17:04:55 +00:00
|
|
|
if (!($id == $exclude_view_name && $display_id == $exclude_view_display)) {
|
2009-05-17 11:16:51 +00:00
|
|
|
if ($optgroup) {
|
2012-10-01 17:04:55 +00:00
|
|
|
$options[$id][$id . ':' . $display['id']] = t('@view : @display', array('@view' => $id, '@display' => $display['id']));
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
else {
|
2012-10-01 17:04:55 +00:00
|
|
|
$options[$id . ':' . $display['id']] = t('View: @view - Display: @display', array('@view' => $id, '@display' => $display['id']));
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-07-22 20:31:25 +00:00
|
|
|
if ($sort) {
|
|
|
|
ksort($options);
|
|
|
|
}
|
2009-05-17 11:16:51 +00:00
|
|
|
return $options;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-08-27 21:49:48 +00:00
|
|
|
* Returns whether the view is enabled.
|
|
|
|
*
|
2012-10-30 20:37:18 +00:00
|
|
|
* @param Drupal\views\Plugin\Core\Entity\View $view
|
2012-08-28 09:01:36 +00:00
|
|
|
* The view object to check.
|
2012-08-27 21:49:48 +00:00
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
* Returns TRUE if a view is enabled, FALSE otherwise.
|
2009-05-17 11:16:51 +00:00
|
|
|
*/
|
2012-10-30 20:37:18 +00:00
|
|
|
function views_view_is_enabled(View $view) {
|
2013-02-06 12:00:39 +00:00
|
|
|
return $view->status();
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-08-27 21:49:48 +00:00
|
|
|
* Returns whether the view is disabled.
|
|
|
|
*
|
2012-10-30 20:37:18 +00:00
|
|
|
* @param Drupal\views\Plugin\Core\Entity\View $view
|
2012-08-28 09:01:36 +00:00
|
|
|
* The view object to check.
|
2012-08-27 21:49:48 +00:00
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
* Returns TRUE if a view is disabled, FALSE otherwise.
|
2009-05-17 11:16:51 +00:00
|
|
|
*/
|
2012-10-30 20:37:18 +00:00
|
|
|
function views_view_is_disabled(View $view) {
|
2013-02-06 12:00:39 +00:00
|
|
|
return !$view->status();
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
|
2012-10-12 09:42:07 +00:00
|
|
|
/**
|
2013-02-06 12:00:39 +00:00
|
|
|
* Enables and saves a view.
|
2012-10-12 09:42:07 +00:00
|
|
|
*
|
2012-10-30 20:37:18 +00:00
|
|
|
* @param Drupal\views\Plugin\Core\Entity\View $view
|
|
|
|
* The View object to disable.
|
2012-10-12 09:42:07 +00:00
|
|
|
*/
|
2012-10-30 20:37:18 +00:00
|
|
|
function views_enable_view(View $view) {
|
2013-02-06 12:00:39 +00:00
|
|
|
$view->enable()->save();
|
2012-10-12 09:42:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-02-06 12:00:39 +00:00
|
|
|
* Disables and saves a view.
|
2012-10-12 09:42:07 +00:00
|
|
|
*
|
2012-10-30 20:37:18 +00:00
|
|
|
* @param Drupal\views\Plugin\Core\Entity\View $view
|
|
|
|
* The View object to disable.
|
2012-10-12 09:42:07 +00:00
|
|
|
*/
|
2012-10-30 20:37:18 +00:00
|
|
|
function views_disable_view(View $view) {
|
2013-02-06 12:00:39 +00:00
|
|
|
$view->disable()->save();
|
2012-10-12 09:42:07 +00:00
|
|
|
}
|
|
|
|
|
2009-05-17 11:16:51 +00:00
|
|
|
/**
|
2012-08-28 09:01:36 +00:00
|
|
|
* Loads a view from configuration.
|
2009-05-17 11:16:51 +00:00
|
|
|
*
|
2012-08-28 09:01:36 +00:00
|
|
|
* @param string $name
|
2009-05-17 11:16:51 +00:00
|
|
|
* The name of the view.
|
2012-08-28 09:01:36 +00:00
|
|
|
*
|
2012-09-18 19:41:58 +00:00
|
|
|
* @return Drupal\views\ViewExecutable
|
2012-08-27 21:49:48 +00:00
|
|
|
* A reference to the $view object.
|
2009-05-17 11:16:51 +00:00
|
|
|
*/
|
2012-08-27 15:20:01 +00:00
|
|
|
function views_get_view($name) {
|
|
|
|
$view = entity_load('view', $name);
|
2009-05-17 11:16:51 +00:00
|
|
|
if ($view) {
|
2012-11-01 23:30:09 +00:00
|
|
|
return $view->get('executable');
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns TRUE if the passed-in view contains handlers with views form
|
|
|
|
* implementations, FALSE otherwise.
|
|
|
|
*/
|
|
|
|
function views_view_has_form_elements($view) {
|
|
|
|
foreach ($view->field as $field) {
|
|
|
|
if (property_exists($field, 'views_form_callback') || method_exists($field, 'views_form')) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$area_handlers = array_merge(array_values($view->header), array_values($view->footer));
|
|
|
|
$empty = empty($view->result);
|
|
|
|
foreach ($area_handlers as $area) {
|
|
|
|
if (method_exists($area, 'views_form') && !$area->views_form_empty($empty)) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is the entry function. Just gets the form for the current step.
|
|
|
|
* The form is always assumed to be multistep, even if it has only one
|
|
|
|
* step (the default 'views_form_views_form' step). That way it is actually
|
|
|
|
* possible for modules to have a multistep form if they need to.
|
|
|
|
*/
|
2012-09-23 19:09:23 +00:00
|
|
|
function views_form($form, &$form_state, ViewExecutable $view, $output) {
|
2009-05-17 11:16:51 +00:00
|
|
|
$form_state['step'] = isset($form_state['step']) ? $form_state['step'] : 'views_form_views_form';
|
|
|
|
// Cache the built form to prevent it from being rebuilt prior to validation
|
|
|
|
// and submission, which could lead to data being processed incorrectly,
|
|
|
|
// because the views rows (and thus, the form elements as well) have changed
|
|
|
|
// in the meantime.
|
|
|
|
$form_state['cache'] = TRUE;
|
|
|
|
|
|
|
|
$form = array();
|
2012-05-15 15:10:47 +00:00
|
|
|
$query = drupal_get_query_parameters();
|
2012-08-29 19:36:52 +00:00
|
|
|
$form['#action'] = url($view->getUrl(), array('query' => $query));
|
2009-05-17 11:16:51 +00:00
|
|
|
// Tell the preprocessor whether it should hide the header, footer, pager...
|
|
|
|
$form['show_view_elements'] = array(
|
|
|
|
'#type' => 'value',
|
|
|
|
'#value' => ($form_state['step'] == 'views_form_views_form') ? TRUE : FALSE,
|
|
|
|
);
|
|
|
|
|
|
|
|
$form = $form_state['step']($form, $form_state, $view, $output);
|
|
|
|
return $form;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback for the main step of a Views form.
|
|
|
|
* Invoked by views_form().
|
|
|
|
*/
|
2012-09-23 19:09:23 +00:00
|
|
|
function views_form_views_form($form, &$form_state, ViewExecutable $view, $output) {
|
2009-05-17 11:16:51 +00:00
|
|
|
$form['#prefix'] = '<div class="views-form">';
|
|
|
|
$form['#suffix'] = '</div>';
|
|
|
|
$form['#theme'] = 'views_form_views_form';
|
|
|
|
$form['#validate'][] = 'views_form_views_form_validate';
|
|
|
|
$form['#submit'][] = 'views_form_views_form_submit';
|
|
|
|
|
|
|
|
// Add the output markup to the form array so that it's included when the form
|
|
|
|
// array is passed to the theme function.
|
|
|
|
$form['output'] = array(
|
|
|
|
'#type' => 'markup',
|
|
|
|
'#markup' => $output,
|
|
|
|
// This way any additional form elements will go before the view
|
|
|
|
// (below the exposed widgets).
|
|
|
|
'#weight' => 50,
|
|
|
|
);
|
|
|
|
|
2012-11-21 17:48:44 +00:00
|
|
|
$form['actions'] = array(
|
|
|
|
'#type' => 'actions',
|
|
|
|
);
|
|
|
|
$form['actions']['submit'] = array(
|
|
|
|
'#type' => 'submit',
|
|
|
|
'#value' => t('Save'),
|
|
|
|
);
|
|
|
|
|
2009-05-17 11:16:51 +00:00
|
|
|
$substitutions = array();
|
|
|
|
foreach ($view->field as $field_name => $field) {
|
|
|
|
$form_element_name = $field_name;
|
|
|
|
if (method_exists($field, 'form_element_name')) {
|
|
|
|
$form_element_name = $field->form_element_name();
|
|
|
|
}
|
|
|
|
$method_form_element_row_id_exists = FALSE;
|
|
|
|
if (method_exists($field, 'form_element_row_id')) {
|
|
|
|
$method_form_element_row_id_exists = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the field provides a views form, allow it to modify the $form array.
|
|
|
|
$has_form = FALSE;
|
|
|
|
if (property_exists($field, 'views_form_callback')) {
|
|
|
|
$callback = $field->views_form_callback;
|
|
|
|
$callback($view, $field, $form, $form_state);
|
|
|
|
$has_form = TRUE;
|
|
|
|
}
|
|
|
|
elseif (method_exists($field, 'views_form')) {
|
|
|
|
$field->views_form($form, $form_state);
|
|
|
|
$has_form = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build the substitutions array for use in the theme function.
|
|
|
|
if ($has_form) {
|
|
|
|
foreach ($view->result as $row_id => $row) {
|
|
|
|
if ($method_form_element_row_id_exists) {
|
|
|
|
$form_element_row_id = $field->form_element_row_id($row_id);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$form_element_row_id = $row_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
$substitutions[] = array(
|
|
|
|
'placeholder' => '<!--form-item-' . $form_element_name . '--' . $form_element_row_id . '-->',
|
|
|
|
'field_name' => $form_element_name,
|
|
|
|
'row_id' => $form_element_row_id,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Give the area handlers a chance to extend the form.
|
|
|
|
$area_handlers = array_merge(array_values($view->header), array_values($view->footer));
|
|
|
|
$empty = empty($view->result);
|
|
|
|
foreach ($area_handlers as $area) {
|
|
|
|
if (method_exists($area, 'views_form') && !$area->views_form_empty($empty)) {
|
|
|
|
$area->views_form($form, $form_state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$form['#substitutions'] = array(
|
|
|
|
'#type' => 'value',
|
|
|
|
'#value' => $substitutions,
|
|
|
|
);
|
|
|
|
|
|
|
|
return $form;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Validate handler for the first step of the views form.
|
|
|
|
* Calls any existing views_form_validate functions located
|
|
|
|
* on the views fields.
|
|
|
|
*/
|
|
|
|
function views_form_views_form_validate($form, &$form_state) {
|
|
|
|
$view = $form_state['build_info']['args'][0];
|
|
|
|
|
|
|
|
// Call the validation method on every field handler that has it.
|
|
|
|
foreach ($view->field as $field_name => $field) {
|
|
|
|
if (method_exists($field, 'views_form_validate')) {
|
|
|
|
$field->views_form_validate($form, $form_state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Call the validate method on every area handler that has it.
|
|
|
|
foreach (array('header', 'footer') as $area) {
|
|
|
|
foreach ($view->{$area} as $area_name => $area_handler) {
|
|
|
|
if (method_exists($area_handler, 'views_form_validate')) {
|
|
|
|
$area_handler->views_form_validate($form, $form_state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Submit handler for the first step of the views form.
|
|
|
|
* Calls any existing views_form_submit functions located
|
|
|
|
* on the views fields.
|
|
|
|
*/
|
|
|
|
function views_form_views_form_submit($form, &$form_state) {
|
|
|
|
$view = $form_state['build_info']['args'][0];
|
|
|
|
|
|
|
|
// Call the submit method on every field handler that has it.
|
|
|
|
foreach ($view->field as $field_name => $field) {
|
|
|
|
if (method_exists($field, 'views_form_submit')) {
|
|
|
|
$field->views_form_submit($form, $form_state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Call the submit method on every area handler that has it.
|
|
|
|
foreach (array('header', 'footer') as $area) {
|
|
|
|
foreach ($view->{$area} as $area_name => $area_handler) {
|
|
|
|
if (method_exists($area_handler, 'views_form_submit')) {
|
|
|
|
$area_handler->views_form_submit($form, $form_state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Form builder for the exposed widgets form.
|
|
|
|
*
|
|
|
|
* Be sure that $view and $display are references.
|
|
|
|
*/
|
|
|
|
function views_exposed_form($form, &$form_state) {
|
|
|
|
// Don't show the form when batch operations are in progress.
|
|
|
|
if ($batch = batch_get() && isset($batch['current_set'])) {
|
|
|
|
return array(
|
|
|
|
// Set the theme callback to be nothing to avoid errors in template_preprocess_views_exposed_form().
|
|
|
|
'#theme' => '',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure that we validate because this form might be submitted
|
|
|
|
// multiple times per page.
|
|
|
|
$form_state['must_validate'] = TRUE;
|
|
|
|
$view = &$form_state['view'];
|
|
|
|
$display = &$form_state['display'];
|
|
|
|
|
2012-08-29 19:36:52 +00:00
|
|
|
$form_state['input'] = $view->getExposedInput();
|
2009-05-17 11:16:51 +00:00
|
|
|
|
|
|
|
// Let form plugins know this is for exposed widgets.
|
|
|
|
$form_state['exposed'] = TRUE;
|
|
|
|
// Check if the form was already created
|
2013-01-19 05:10:42 +00:00
|
|
|
if ($cache = views_exposed_form_cache($view->storage->id(), $view->current_display)) {
|
2009-05-17 11:16:51 +00:00
|
|
|
return $cache;
|
|
|
|
}
|
|
|
|
|
|
|
|
$form['#info'] = array();
|
|
|
|
|
|
|
|
// Go through each handler and let it generate its exposed widget.
|
|
|
|
foreach ($view->display_handler->handlers as $type => $value) {
|
|
|
|
foreach ($view->$type as $id => $handler) {
|
2012-09-01 12:07:43 +00:00
|
|
|
if ($handler->canExpose() && $handler->isExposed()) {
|
2012-08-17 15:09:47 +00:00
|
|
|
// Grouped exposed filters have their own forms.
|
|
|
|
// Instead of render the standard exposed form, a new Select or
|
|
|
|
// Radio form field is rendered with the available groups.
|
|
|
|
// When an user choose an option the selected value is split
|
|
|
|
// into the operator and value that the item represents.
|
2012-09-01 12:07:43 +00:00
|
|
|
if ($handler->isAGroup()) {
|
2012-08-17 15:09:47 +00:00
|
|
|
$handler->group_form($form, $form_state);
|
|
|
|
$id = $handler->options['group_info']['identifier'];
|
|
|
|
}
|
|
|
|
else {
|
2012-09-01 12:07:43 +00:00
|
|
|
$handler->buildExposedForm($form, $form_state);
|
2012-08-17 15:09:47 +00:00
|
|
|
}
|
2012-09-01 12:07:43 +00:00
|
|
|
if ($info = $handler->exposedInfo()) {
|
2009-05-17 11:16:51 +00:00
|
|
|
$form['#info']["$type-$id"] = $info;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$form['submit'] = array(
|
2012-08-26 13:19:30 +00:00
|
|
|
// Prevent from showing up in $_GET.
|
|
|
|
'#name' => '',
|
2009-05-17 11:16:51 +00:00
|
|
|
'#type' => 'submit',
|
|
|
|
'#value' => t('Apply'),
|
2013-01-19 05:10:42 +00:00
|
|
|
'#id' => drupal_html_id('edit-submit-' . $view->storage->id()),
|
2009-05-17 11:16:51 +00:00
|
|
|
);
|
|
|
|
|
2012-08-30 09:23:13 +00:00
|
|
|
$form['#action'] = url($view->display_handler->getUrl());
|
2009-05-17 11:16:51 +00:00
|
|
|
$form['#theme'] = views_theme_functions('views_exposed_form', $view, $display);
|
2013-01-19 05:10:42 +00:00
|
|
|
$form['#id'] = drupal_clean_css_identifier('views_exposed_form-' . check_plain($view->storage->id()) . '-' . check_plain($display['id']));
|
2009-05-17 11:16:51 +00:00
|
|
|
// $form['#attributes']['class'] = array('views-exposed-form');
|
|
|
|
|
|
|
|
$exposed_form_plugin = $form_state['exposed_form_plugin'];
|
|
|
|
$exposed_form_plugin->exposed_form_alter($form, $form_state);
|
|
|
|
|
|
|
|
// Save the form
|
2013-01-19 05:10:42 +00:00
|
|
|
views_exposed_form_cache($view->storage->id(), $view->current_display, $form);
|
2009-05-17 11:16:51 +00:00
|
|
|
|
|
|
|
return $form;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implement hook_form_alter for the exposed form.
|
|
|
|
*
|
|
|
|
* Since the exposed form is a GET form, we don't want it to send a wide
|
|
|
|
* variety of information.
|
|
|
|
*/
|
|
|
|
function views_form_views_exposed_form_alter(&$form, &$form_state) {
|
|
|
|
$form['form_build_id']['#access'] = FALSE;
|
|
|
|
$form['form_token']['#access'] = FALSE;
|
|
|
|
$form['form_id']['#access'] = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Validate handler for exposed filters
|
|
|
|
*/
|
|
|
|
function views_exposed_form_validate(&$form, &$form_state) {
|
|
|
|
foreach (array('field', 'filter') as $type) {
|
|
|
|
$handlers = &$form_state['view']->$type;
|
|
|
|
foreach ($handlers as $key => $handler) {
|
2012-09-01 12:07:43 +00:00
|
|
|
$handlers[$key]->validateExposed($form, $form_state);
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$exposed_form_plugin = $form_state['exposed_form_plugin'];
|
|
|
|
$exposed_form_plugin->exposed_form_validate($form, $form_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Submit handler for exposed filters
|
|
|
|
*/
|
|
|
|
function views_exposed_form_submit(&$form, &$form_state) {
|
|
|
|
foreach (array('field', 'filter') as $type) {
|
|
|
|
$handlers = &$form_state['view']->$type;
|
|
|
|
foreach ($handlers as $key => $info) {
|
2012-09-01 12:07:43 +00:00
|
|
|
$handlers[$key]->submitExposed($form, $form_state);
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$form_state['view']->exposed_data = $form_state['values'];
|
|
|
|
$form_state['view']->exposed_raw_input = array();
|
|
|
|
|
2012-08-02 06:15:05 +00:00
|
|
|
$exclude = array('submit', 'form_build_id', 'form_id', 'form_token', 'exposed_form_plugin', '', 'reset');
|
2009-05-17 11:16:51 +00:00
|
|
|
$exposed_form_plugin = $form_state['exposed_form_plugin'];
|
2013-05-28 22:10:16 +00:00
|
|
|
$exposed_form_plugin->exposedFormSubmit($form, $form_state, $exclude);
|
2009-05-17 11:16:51 +00:00
|
|
|
|
|
|
|
foreach ($form_state['values'] as $key => $value) {
|
|
|
|
if (!in_array($key, $exclude)) {
|
|
|
|
$form_state['view']->exposed_raw_input[$key] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Save the Views exposed form for later use.
|
|
|
|
*
|
|
|
|
* @param $views_name
|
|
|
|
* String. The views name.
|
|
|
|
* @param $display_name
|
|
|
|
* String. The current view display name.
|
|
|
|
* @param $form_output
|
|
|
|
* Array (optional). The form structure. Only needed when inserting the value.
|
|
|
|
* @return
|
|
|
|
* Array. The form structure, if any. Otherwise, return FALSE.
|
|
|
|
*/
|
|
|
|
function views_exposed_form_cache($views_name, $display_name, $form_output = NULL) {
|
2012-07-16 07:59:57 +00:00
|
|
|
// When running tests for exposed filters, this cache should
|
|
|
|
// be cleared between each test.
|
|
|
|
$views_exposed = &drupal_static(__FUNCTION__);
|
2009-05-17 11:16:51 +00:00
|
|
|
|
|
|
|
// Save the form output
|
|
|
|
if (!empty($form_output)) {
|
|
|
|
$views_exposed[$views_name][$display_name] = $form_output;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return the form output, if any
|
|
|
|
return empty($views_exposed[$views_name][$display_name]) ? FALSE : $views_exposed[$views_name][$display_name];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build a list of theme function names for use most everywhere.
|
|
|
|
*/
|
2012-09-23 19:09:23 +00:00
|
|
|
function views_theme_functions($hook, ViewExecutable $view, $display = NULL) {
|
2013-04-05 12:32:19 +00:00
|
|
|
Drupal::moduleHandler()->loadInclude('views', 'inc', 'views.theme');
|
2009-05-17 11:16:51 +00:00
|
|
|
return _views_theme_functions($hook, $view, $display);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements hook_query_TAG_alter().
|
|
|
|
*
|
|
|
|
* This is the hook_query_alter() for queries tagged by Views and is used to
|
|
|
|
* add in substitutions from hook_views_query_substitutions().
|
|
|
|
*/
|
2012-05-15 16:44:31 +00:00
|
|
|
function views_query_views_alter(AlterableInterface $query) {
|
2009-05-17 11:16:51 +00:00
|
|
|
$substitutions = $query->getMetaData('views_substitutions');
|
|
|
|
$tables =& $query->getTables();
|
|
|
|
$where =& $query->conditions();
|
|
|
|
|
|
|
|
// Replaces substitions in tables.
|
|
|
|
foreach ($tables as $table_name => $table_metadata) {
|
|
|
|
foreach ($table_metadata['arguments'] as $replacement_key => $value) {
|
|
|
|
if (isset($substitutions[$value])) {
|
|
|
|
$tables[$table_name]['arguments'][$replacement_key] = $substitutions[$value];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Replaces substitions in filter criterias.
|
|
|
|
_views_query_tag_alter_condition($query, $where, $substitutions);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Replaces the substitutions recursive foreach condition.
|
|
|
|
*/
|
2012-05-15 16:44:31 +00:00
|
|
|
function _views_query_tag_alter_condition(AlterableInterface $query, &$conditions, $substitutions) {
|
2009-05-17 11:16:51 +00:00
|
|
|
foreach ($conditions as $condition_id => &$condition) {
|
|
|
|
if (is_numeric($condition_id)) {
|
|
|
|
if (is_string($condition['field'])) {
|
|
|
|
$condition['field'] = str_replace(array_keys($substitutions), array_values($substitutions), $condition['field']);
|
|
|
|
}
|
|
|
|
elseif (is_object($condition['field'])) {
|
|
|
|
$sub_conditions =& $condition['field']->conditions();
|
|
|
|
_views_query_tag_alter_condition($query, $sub_conditions, $substitutions);
|
|
|
|
}
|
|
|
|
// $condition['value'] is a subquery so alter the subquery recursive.
|
|
|
|
// Therefore take sure to get the metadata of the main query.
|
|
|
|
if (is_object($condition['value'])) {
|
|
|
|
$subquery = $condition['value'];
|
|
|
|
$subquery->addMetaData('views_substitutions', $query->getMetaData('views_substitutions'));
|
|
|
|
views_query_views_alter($condition['value']);
|
|
|
|
}
|
|
|
|
elseif (isset($condition['value'])) {
|
|
|
|
$condition['value'] = str_replace(array_keys($substitutions), array_values($substitutions), $condition['value']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Embed a view using a PHP snippet.
|
|
|
|
*
|
|
|
|
* This function is meant to be called from PHP snippets, should one wish to
|
|
|
|
* embed a view in a node or something. It's meant to provide the simplest
|
|
|
|
* solution and doesn't really offer a lot of options, but breaking the function
|
|
|
|
* apart is pretty easy, and this provides a worthwhile guide to doing so.
|
|
|
|
*
|
|
|
|
* Note that this function does NOT display the title of the view. If you want
|
|
|
|
* to do that, you will need to do what this function does manually, by
|
2012-08-29 19:36:52 +00:00
|
|
|
* loading the view, getting the preview and then getting $view->getTitle().
|
2009-05-17 11:16:51 +00:00
|
|
|
*
|
|
|
|
* @param $name
|
|
|
|
* The name of the view to embed.
|
|
|
|
* @param $display_id
|
|
|
|
* The display id to embed. If unsure, use 'default', as it will always be
|
|
|
|
* valid. But things like 'page' or 'block' should work here.
|
|
|
|
* @param ...
|
|
|
|
* Any additional parameters will be passed as arguments.
|
|
|
|
*/
|
|
|
|
function views_embed_view($name, $display_id = 'default') {
|
|
|
|
$args = func_get_args();
|
|
|
|
array_shift($args); // remove $name
|
|
|
|
if (count($args)) {
|
|
|
|
array_shift($args); // remove $display_id
|
|
|
|
}
|
|
|
|
|
|
|
|
$view = views_get_view($name);
|
|
|
|
if (!$view || !$view->access($display_id)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $view->preview($display_id, $args);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the result of a view.
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* The name of the view to retrieve the data from.
|
|
|
|
* @param string $display_id
|
|
|
|
* The display id. On the edit page for the view in question, you'll find
|
|
|
|
* a list of displays at the left side of the control area. "Master"
|
|
|
|
* will be at the top of that list. Hover your cursor over the name of the
|
|
|
|
* display you want to use. An URL will appear in the status bar of your
|
|
|
|
* browser. This is usually at the bottom of the window, in the chrome.
|
|
|
|
* Everything after #views-tab- is the display ID, e.g. page_1.
|
|
|
|
* @param ...
|
|
|
|
* Any additional parameters will be passed as arguments.
|
|
|
|
* @return array
|
|
|
|
* An array containing an object for each view item.
|
|
|
|
*/
|
|
|
|
function views_get_view_result($name, $display_id = NULL) {
|
|
|
|
$args = func_get_args();
|
|
|
|
array_shift($args); // remove $name
|
|
|
|
if (count($args)) {
|
|
|
|
array_shift($args); // remove $display_id
|
|
|
|
}
|
|
|
|
|
|
|
|
$view = views_get_view($name);
|
|
|
|
if (is_object($view)) {
|
|
|
|
if (is_array($args)) {
|
2012-08-29 19:36:52 +00:00
|
|
|
$view->setArguments($args);
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
if (is_string($display_id)) {
|
2012-08-29 19:36:52 +00:00
|
|
|
$view->setDisplay($display_id);
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
|
|
|
else {
|
2012-08-29 19:36:52 +00:00
|
|
|
$view->initDisplay();
|
2009-05-17 11:16:51 +00:00
|
|
|
}
|
2012-08-29 19:36:52 +00:00
|
|
|
$view->preExecute();
|
2009-05-17 11:16:51 +00:00
|
|
|
$view->execute();
|
|
|
|
return $view->result;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* #process callback to see if we need to check_plain() the options.
|
|
|
|
*
|
|
|
|
* Since FAPI is inconsistent, the #options are sanitized for you in all cases
|
|
|
|
* _except_ checkboxes. We have form elements that are sometimes 'select' and
|
|
|
|
* sometimes 'checkboxes', so we need decide late in the form rendering cycle
|
|
|
|
* if the options need to be sanitized before they're rendered. This callback
|
|
|
|
* inspects the type, and if it's still 'checkboxes', does the sanitation.
|
|
|
|
*/
|
|
|
|
function views_process_check_options($element, &$form_state) {
|
|
|
|
if ($element['#type'] == 'checkboxes' || $element['#type'] == 'checkbox') {
|
|
|
|
$element['#options'] = array_map('check_plain', $element['#options']);
|
|
|
|
}
|
|
|
|
return $element;
|
|
|
|
}
|
|
|
|
|
2012-08-12 01:54:17 +00:00
|
|
|
/**
|
|
|
|
* Validation callback for query tags.
|
|
|
|
*/
|
|
|
|
function views_element_validate_tags($element, &$form_state) {
|
|
|
|
$values = array_map('trim', explode(',', $element['#value']));
|
|
|
|
foreach ($values as $value) {
|
|
|
|
if (preg_match("/[^a-z_]/", $value)) {
|
|
|
|
form_error($element, t('The query tags may only contain lower-case alphabetical characters and underscores.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prerender function to move the textarea to the top.
|
|
|
|
*/
|
|
|
|
function views_handler_field_custom_pre_render_move_text($form) {
|
|
|
|
$form['text'] = $form['alter']['text'];
|
|
|
|
$form['help'] = $form['alter']['help'];
|
|
|
|
unset($form['alter']['text']);
|
|
|
|
unset($form['alter']['help']);
|
|
|
|
|
|
|
|
return $form;
|
|
|
|
}
|
|
|
|
|
2012-12-22 05:15:44 +00:00
|
|
|
/**
|
|
|
|
* Set a cached item in the views cache.
|
|
|
|
*
|
|
|
|
* This is just a convenience wrapper around cache_set().
|
|
|
|
*
|
|
|
|
* @param $cid
|
|
|
|
* The cache ID of the data to store.
|
|
|
|
* @param $data
|
|
|
|
* The data to store in the cache. Complex data types will be automatically serialized before insertion.
|
|
|
|
* Strings will be stored as plain text and not serialized.
|
|
|
|
* @param $use_language
|
|
|
|
* If TRUE, the data will be cached specific to the currently active language.
|
|
|
|
*/
|
|
|
|
function views_cache_set($cid, $data, $use_language = FALSE) {
|
|
|
|
if (config('views.settings')->get('skip_cache')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ($use_language) {
|
2013-05-25 20:12:45 +00:00
|
|
|
$cid .= ':' . language(Language::TYPE_INTERFACE)->langcode;
|
2012-12-22 05:15:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cache('views_info')->set($cid, $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return data from the persistent views cache.
|
|
|
|
*
|
|
|
|
* This is just a convenience wrapper around cache_get().
|
|
|
|
*
|
|
|
|
* @param int $cid
|
|
|
|
* The cache ID of the data to retrieve.
|
|
|
|
* @param bool $use_language
|
|
|
|
* If TRUE, the data will be requested specific to the currently active language.
|
|
|
|
*
|
|
|
|
* @return stdClass|bool
|
|
|
|
* The cache or FALSE on failure.
|
|
|
|
*/
|
|
|
|
function views_cache_get($cid, $use_language = FALSE) {
|
|
|
|
if (config('views.settings')->get('skip_cache')) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if ($use_language) {
|
2013-05-25 20:12:45 +00:00
|
|
|
$cid .= ':' . language(Language::TYPE_INTERFACE)->langcode;
|
2012-12-22 05:15:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return cache('views_info')->get($cid);
|
|
|
|
}
|