search_api-8.x-1.15/src/Datasource/DatasourcePluginBase.php
src/Datasource/DatasourcePluginBase.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | <?php namespace Drupal\search_api\Datasource; use Drupal\Core\Access\AccessResult; use Drupal\Core\Language\Language; use Drupal\Core\Session\AccountInterface; use Drupal\Core\TypedData\ComplexDataInterface; use Drupal\Core\TypedData\TranslatableInterface; use Drupal\search_api\Plugin\IndexPluginBase; /** * Defines a base class from which other datasources may extend. * * Plugins extending this class need to define a plugin definition array through * annotation. These definition arrays may be altered through * hook_search_api_datasource_info_alter(). The definition includes the * following keys: * - id: The unique, system-wide identifier of the datasource. * - label: The human-readable name of the datasource, translated. * - description: A human-readable description for the datasource, translated. * * A complete plugin definition should be written as in this example: * * @code * @SearchApiDatasource( * id = "my_datasource", * label = @Translation("My datasource"), * description = @Translation("Exposes my custom items as a datasource."), * ) * @endcode * * @see \Drupal\search_api\Annotation\SearchApiDatasource * @see \Drupal\search_api\Datasource\DatasourcePluginManager * @see \Drupal\search_api\Datasource\DatasourceInterface * @see plugin_api */ abstract class DatasourcePluginBase extends IndexPluginBase implements DatasourceInterface { /** * {@inheritdoc} */ public function getPropertyDefinitions() { return []; } /** * {@inheritdoc} */ public function load( $id ) { $items = $this ->loadMultiple([ $id ]); return $items ? reset( $items ) : NULL; } /** * {@inheritdoc} */ public function loadMultiple( array $ids ) { return []; } /** * {@inheritdoc} */ public function getItemLabel(ComplexDataInterface $item ) { return NULL; } /** * {@inheritdoc} */ public function getItemBundle(ComplexDataInterface $item ) { return $this ->getPluginId(); } /** * {@inheritdoc} */ public function getItemLanguage(ComplexDataInterface $item ) { if ( $item instanceof TranslatableInterface) { return $item ->language()->getId(); } $item = $item ->getValue(); if ( $item instanceof TranslatableInterface) { return $item ->language()->getId(); } return Language::LANGCODE_NOT_SPECIFIED; } /** * {@inheritdoc} */ public function getItemUrl(ComplexDataInterface $item ) { return NULL; } /** * {@inheritdoc} */ public function checkItemAccess(ComplexDataInterface $item , AccountInterface $account = NULL) { @trigger_error( '\Drupal\search_api\Datasource\DatasourceInterface::checkItemAccess() is deprecated in search_api:8.x-1.14 and is removed from search_api:9.x-1.0. Use getItemAccessResult() instead. See https://www.drupal.org/node/3051902' , E_USER_DEPRECATED); return $this ->getItemAccessResult( $item , $account )->isAllowed(); } /** * {@inheritdoc} */ public function getItemAccessResult(ComplexDataInterface $item , AccountInterface $account = NULL) { return AccessResult::allowed(); } /** * {@inheritdoc} */ public function getViewModes( $bundle = NULL) { return []; } /** * {@inheritdoc} */ public function getBundles() { return [ $this ->getPluginId() => $this ->label(), ]; } /** * {@inheritdoc} */ public function viewItem(ComplexDataInterface $item , $view_mode , $langcode = NULL) { return []; } /** * {@inheritdoc} */ public function viewMultipleItems( array $items , $view_mode , $langcode = NULL) { $build = []; foreach ( $items as $key => $item ) { $build [ $key ] = $this ->viewItem( $item , $view_mode , $langcode ); } return $build ; } /** * {@inheritdoc} */ public function getEntityTypeId() { return NULL; } /** * {@inheritdoc} */ public function getItemIds( $page = NULL) { return NULL; } /** * {@inheritdoc} */ public function getFieldDependencies( array $fields ) { return []; } } |