1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249 |
- <?php
- use Drupal\Core\Language\LanguageInterface;
- use Drupal\views\Plugin\views\cache\CachePluginBase;
- use Drupal\views\Plugin\views\PluginBase;
- use Drupal\views\ViewExecutable;
- function hook_views_analyze(Drupal\views\ViewExecutable $view) {
- $messages = [];
- if ($view->display_handler->options['pager']['type'] == 'none') {
- $messages[] = Drupal\views\Analyzer::formatMessage(t('This view has no pager. This could cause performance issues when the view contains many items.'), 'warning');
- }
- return $messages;
- }
- function hook_views_data() {
-
-
-
-
-
-
-
-
-
-
-
-
- $data = [];
-
-
- $data['example_table'] = [];
-
-
- $data['example_table']['table'] = [];
-
-
-
- $data['example_table']['table']['group'] = t('Example table');
-
-
-
-
- $data['example_table']['table']['provider'] = 'example_module';
-
-
-
-
- $data['example_table']['table']['base'] = [
-
- 'field' => 'nid',
-
- 'title' => t('Example table'),
-
- 'help' => t('Example table contains example content and can be related to nodes.'),
- 'weight' => -10,
- ];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $data['example_table']['table']['join'] = [
-
-
-
-
-
-
-
- 'node_field_data' => [
-
- 'left_field' => 'nid',
-
- 'field' => 'nid',
-
- 'extra' => [
- 0 => [
-
- 'field' => 'published',
- 'value' => TRUE,
- ],
- 1 => [
-
- 'left_field' => 'numeric_field',
- 'value' => 1,
-
- 'numeric' => TRUE,
- ],
- 2 => [
-
-
- 'field' => 'published',
- 'left_field' => 'boolean_field',
-
- 'operator' => '!=',
- ],
- ],
- ],
- ];
-
-
-
-
-
-
-
-
-
-
-
-
-
- $data['example_table']['table']['join']['node_field_data'] = [
-
-
-
-
- 'left_table' => 'foo',
- 'left_field' => 'nid',
- 'field' => 'nid',
-
- 'extra' => [
-
-
- ['left_field' => 'langcode', 'field' => 'langcode'],
-
-
-
- ['field' => 'numeric_field', 'value' => 0, 'numeric' => TRUE, 'operator' => '>'],
- ],
- ];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $data['example_table']['nid'] = [
- 'title' => t('Example content'),
- 'help' => t('Relate example content to the node content'),
-
-
-
-
-
-
- 'relationship' => [
-
- 'base' => 'node_field_data',
-
- 'base field' => 'nid',
-
- 'id' => 'standard',
-
- 'label' => t('Example node'),
- ],
- ];
-
- $data['example_table']['plain_text_field'] = [
- 'title' => t('Plain text field'),
- 'help' => t('Just a plain text field.'),
- 'field' => [
-
- 'id' => 'standard',
- ],
- 'sort' => [
-
- 'id' => 'standard',
- ],
- 'filter' => [
-
- 'id' => 'string',
- ],
- 'argument' => [
-
- 'id' => 'string',
- ],
- ];
-
- $data['example_table']['numeric_field'] = [
- 'title' => t('Numeric field'),
- 'help' => t('Just a numeric field.'),
- 'field' => [
-
- 'id' => 'numeric',
- ],
- 'sort' => [
-
- 'id' => 'standard',
- ],
- 'filter' => [
-
- 'id' => 'numeric',
- ],
- 'argument' => [
-
- 'id' => 'numeric',
- ],
- ];
-
-
- $data['example_table']['boolean_field'] = [
- 'title' => t('Boolean field'),
- 'help' => t('Just an on/off field.'),
- 'field' => [
-
- 'id' => 'boolean',
- ],
- 'sort' => [
-
- 'id' => 'standard',
- ],
- 'filter' => [
-
- 'id' => 'boolean',
-
-
- 'label' => t('Published'),
-
-
- 'type' => 'yes-no',
-
-
- 'use_equal' => TRUE,
- ],
- ];
-
- $data['example_table']['timestamp_field'] = [
- 'title' => t('Timestamp field'),
- 'help' => t('Just a timestamp field.'),
- 'field' => [
-
- 'id' => 'date',
- ],
- 'sort' => [
-
- 'id' => 'date',
- ],
- 'filter' => [
-
- 'id' => 'date',
- ],
- ];
-
-
-
-
-
- $data['views']['area'] = [
- 'title' => t('Text area'),
- 'help' => t('Provide markup text for the area.'),
- 'area' => [
-
- 'id' => 'text',
- ],
- ];
- return $data;
- }
- function hook_views_data_alter(array &$data) {
-
- $data['node_field_data']['nid']['title'] = t('Node-Nid');
-
- $data['users_field_data']['example_field'] = [
- 'title' => t('Example field'),
- 'help' => t('Some example content that references a user'),
- 'field' => [
-
- 'id' => 'example_field',
- ],
- ];
-
-
- $data['node_field_data']['title']['field']['id'] = 'node_title';
-
-
-
-
-
-
-
-
-
-
-
-
- $data['foo']['unique_dummy_name'] = [
- 'title' => t('Title seen while adding relationship'),
- 'help' => t('More information about the relationship'),
- 'relationship' => [
-
- 'base' => 'example_table',
-
- 'base field' => 'eid',
-
-
- 'field' => 'fid',
-
- 'id' => 'standard',
- 'label' => t('Default label for relationship'),
- ],
- ];
-
- }
- function hook_field_views_data(\Drupal\field\FieldStorageConfigInterface $field_storage) {
- $data = views_field_default_views_data($field_storage);
- foreach ($data as $table_name => $table_data) {
-
- $data[$table_name][$field_storage->getName() . '_target_id']['relationship'] = [
- 'id' => 'standard',
- 'base' => 'file_managed',
- 'base field' => 'target_id',
- 'label' => t('image from @field_name', ['@field_name' => $field_storage->getName()]),
- ];
- }
- return $data;
- }
- function hook_field_views_data_alter(array &$data, \Drupal\field\FieldStorageConfigInterface $field_storage) {
- $entity_type_id = $field_storage->getTargetEntityTypeId();
- $field_name = $field_storage->getName();
- $entity_type = \Drupal::entityTypeManager()->getDefinition($entity_type_id);
- $pseudo_field_name = 'reverse_' . $field_name . '_' . $entity_type_id;
- $table_mapping = \Drupal::entityTypeManager()->getStorage($entity_type_id)->getTableMapping();
- list($label) = views_entity_field_label($entity_type_id, $field_name);
- $data['file_managed'][$pseudo_field_name]['relationship'] = [
- 'title' => t('@entity using @field', ['@entity' => $entity_type->getLabel(), '@field' => $label]),
- 'help' => t('Relate each @entity with a @field set to the image.', ['@entity' => $entity_type->getLabel(), '@field' => $label]),
- 'id' => 'entity_reverse',
- 'field_name' => $field_name,
- 'entity_type' => $entity_type_id,
- 'field table' => $table_mapping->getDedicatedDataTableName($field_storage),
- 'field field' => $field_name . '_target_id',
- 'base' => $entity_type->getBaseTable(),
- 'base field' => $entity_type->getKey('id'),
- 'label' => $field_name,
- 'join_extra' => [
- 0 => [
- 'field' => 'deleted',
- 'value' => 0,
- 'numeric' => TRUE,
- ],
- ],
- ];
- }
- function hook_field_views_data_views_data_alter(array &$data, \Drupal\field\FieldStorageConfigInterface $field) {
- $field_name = $field->getName();
- $data_key = 'field_data_' . $field_name;
- $entity_type_id = $field->entity_type;
- $entity_type = \Drupal::entityTypeManager()->getDefinition($entity_type_id);
- $pseudo_field_name = 'reverse_' . $field_name . '_' . $entity_type_id;
- list($label) = views_entity_field_label($entity_type_id, $field_name);
- $table_mapping = \Drupal::entityTypeManager()->getStorage($entity_type_id)->getTableMapping();
-
- $data[$data_key][$pseudo_field_name]['relationship'] = [
- 'title' => t('@entity using @field', ['@entity' => $entity_type->getLabel(), '@field' => $label]),
- 'help' => t('Relate each @entity with a @field set to the term.', ['@entity' => $entity_type->getLabel(), '@field' => $label]),
- 'id' => 'entity_reverse',
- 'field_name' => $field_name,
- 'entity_type' => $entity_type_id,
- 'field table' => $table_mapping->getDedicatedDataTableName($field),
- 'field field' => $field_name . '_target_id',
- 'base' => $entity_type->getBaseTable(),
- 'base field' => $entity_type->getKey('id'),
- 'label' => $field_name,
- 'join_extra' => [
- 0 => [
- 'field' => 'deleted',
- 'value' => 0,
- 'numeric' => TRUE,
- ],
- ],
- ];
- }
- function hook_views_query_substitutions(ViewExecutable $view) {
-
- return [
- '***CURRENT_VERSION***' => \Drupal::VERSION,
- '***CURRENT_TIME***' => REQUEST_TIME,
- '***LANGUAGE_language_content***' => \Drupal::languageManager()->getCurrentLanguage(LanguageInterface::TYPE_CONTENT)->getId(),
- PluginBase::VIEWS_QUERY_LANGUAGE_SITE_DEFAULT => \Drupal::languageManager()->getDefaultLanguage()->getId(),
- ];
- }
- function hook_views_form_substitutions() {
- return [
- '<!--views-form-example-substitutions-->' => 'Example Substitution',
- ];
- }
- function hook_views_pre_view(ViewExecutable $view, $display_id, array &$args) {
-
- $account = \Drupal::currentUser();
- if ($view->id() == 'my_special_view' && $account->hasPermission('my special permission') && $display_id == 'public_display') {
- $args[0] = 'custom value';
- }
- }
- function hook_views_pre_build(ViewExecutable $view) {
-
-
-
- if (date('D') == 'Mon') {
- unset($view->attachment_before);
- unset($view->attachment_after);
- }
- }
- function hook_views_post_build(ViewExecutable $view) {
-
-
-
-
-
- if ($view->id() == 'my_view' && isset($view->exposed_raw_input['type']) && $view->exposed_raw_input['type'] != 'All') {
-
- if (isset($view->field['type'])) {
- $view->field['type']->options['exclude'] = TRUE;
- }
- }
- }
- function hook_views_pre_execute(ViewExecutable $view) {
-
-
-
-
- $account = \Drupal::currentUser();
- if (count($view->query->tables) > 2 && $account->hasPermission('administer views')) {
- \Drupal::messenger()->addWarning(t('The view %view may be heavy to execute.', ['%view' => $view->id()]));
- }
- }
- function hook_views_post_execute(ViewExecutable $view) {
-
-
-
-
- if ($view->total_rows > 100) {
- \Drupal::messenger()->addStatus(t('You have more than 100 hits. Use the filter settings to narrow down your list.'));
- }
- }
- function hook_views_pre_render(ViewExecutable $view) {
-
-
-
- shuffle($view->result);
- }
- function hook_views_post_render(ViewExecutable $view, &$output, CachePluginBase $cache) {
-
-
- if ($view->pager instanceof Drupal\views\Plugin\views\pager\Full && $cache instanceof Drupal\views\Plugin\views\cache\Time && count($view->result) < 10) {
- $cache->options['results_lifespan'] = 0;
- $cache->options['output_lifespan'] = 0;
- }
- }
- function hook_views_query_alter(ViewExecutable $view, QueryPluginBase $query) {
-
-
-
- if ($view->id() == 'my_view' && is_numeric($view->exposed_raw_input['title']) && $view->exposed_raw_input['title'] > 0) {
-
- foreach ($query->where as &$condition_group) {
- foreach ($condition_group['conditions'] as &$condition) {
-
-
- if ($condition['field'] == 'node.title') {
- $condition = [
- 'field' => 'node.nid',
- 'value' => $view->exposed_raw_input['title'],
- 'operator' => '=',
- ];
- }
- }
- }
- }
- }
- function hook_views_preview_info_alter(array &$rows, ViewExecutable $view) {
-
-
- $rows['query'][] = [
- t('<strong>Table queue</strong>'),
- count($view->query->table_queue) . ': (' . implode(', ', array_keys($view->query->table_queue)) . ')',
- ];
- }
- function hook_views_invalidate_cache() {
- \Drupal\Core\Cache\Cache::invalidateTags(['views']);
- }
- function hook_views_plugins_access_alter(array &$plugins) {
-
- unset($plugins['role']);
- }
- function hook_views_plugins_argument_default_alter(array &$plugins) {
-
- unset($plugins['php']);
- }
- function hook_views_plugins_argument_validator_alter(array &$plugins) {
-
- unset($plugins['php']);
- }
- function hook_views_plugins_cache_alter(array &$plugins) {
-
- $plugins['time']['title'] = t('Custom title');
- }
- function hook_views_plugins_display_extenders_alter(array &$plugins) {
-
- $plugins['time']['title'] = t('Custom title');
- }
- function hook_views_plugins_display_alter(array &$plugins) {
-
- $plugins['rest_export']['title'] = t('Export');
- }
- function hook_views_plugins_exposed_form_alter(array &$plugins) {
-
- unset($plugins['input_required']);
- }
- function hook_views_plugins_join_alter(array &$plugins) {
-
- debug($plugins);
- }
- function hook_views_plugins_pager_alter(array &$plugins) {
-
- unset($plugins['full']);
- }
- function hook_views_plugins_query_alter(array &$plugins) {
-
- debug($plugins);
- }
- function hook_views_plugins_row_alter(array &$plugins) {
-
- $plugins['entity:node']['class'] = 'Drupal\node\Plugin\views\row\NodeRow';
- $plugins['entity:node']['module'] = 'node';
- }
- function hook_views_plugins_style_alter(array &$plugins) {
-
- $plugins['html_list']['theme'] = 'custom_views_view_list';
- }
- function hook_views_plugins_wizard_alter(array &$plugins) {
-
- $plugins['node_revision']['title'] = t('Node revision wizard');
- }
- function hook_views_plugins_area_alter(array &$plugins) {
-
- $plugins['title']['class'] = 'Drupal\\example\\ExampleClass';
- }
- function hook_views_plugins_argument_alter(array &$plugins) {
-
- $plugins['title']['class'] = 'Drupal\\example\\ExampleClass';
- }
- function hook_views_plugins_field_alter(array &$plugins) {
-
- $plugins['title']['class'] = 'Drupal\\example\\ExampleClass';
- }
- function hook_views_plugins_filter_alter(array &$plugins) {
-
- $plugins['title']['class'] = 'Drupal\\example\\ExampleClass';
- }
- function hook_views_plugins_relationship_alter(array &$plugins) {
-
- $plugins['title']['class'] = 'Drupal\\example\\ExampleClass';
- }
- function hook_views_plugins_sort_alter(array &$plugins) {
-
- $plugins['title']['class'] = 'Drupal\\example\\ExampleClass';
- }
|