1 | <?php |
||
58 | class EntityBrowser extends ConfigEntityBase implements EntityBrowserInterface, EntityWithPluginCollectionInterface { |
||
59 | |||
60 | /** |
||
61 | * The name of the entity browser. |
||
62 | * |
||
63 | * @var string |
||
64 | */ |
||
65 | public $name; |
||
66 | |||
67 | /** |
||
68 | * The entity browser label. |
||
69 | * |
||
70 | * @var string |
||
71 | */ |
||
72 | public $label; |
||
73 | |||
74 | /** |
||
75 | * The display plugin id. |
||
76 | * |
||
77 | * @var string |
||
78 | */ |
||
79 | public $display; |
||
80 | |||
81 | /** |
||
82 | * The display plugin configuration. |
||
83 | * |
||
84 | * @var array |
||
85 | */ |
||
86 | public $display_configuration = []; |
||
87 | |||
88 | /** |
||
89 | * Display lazy plugin collection. |
||
90 | * |
||
91 | * @var \Drupal\Core\Plugin\DefaultSingleLazyPluginCollection |
||
92 | */ |
||
93 | protected $displayCollection; |
||
94 | |||
95 | /** |
||
96 | * The array of widgets for this entity browser. |
||
97 | * |
||
98 | * @var array |
||
99 | */ |
||
100 | protected $widgets = []; |
||
101 | |||
102 | /** |
||
103 | * Holds the collection of widgets that are used by this entity browser. |
||
104 | * |
||
105 | * @var \Drupal\entity_browser\WidgetsCollection |
||
106 | */ |
||
107 | protected $widgetsCollection; |
||
108 | |||
109 | /** |
||
110 | * The selection display plugin ID. |
||
111 | * |
||
112 | * @var string |
||
113 | */ |
||
114 | public $selection_display; |
||
115 | |||
116 | /** |
||
117 | * The selection display plugin configuration. |
||
118 | * |
||
119 | * @var array |
||
120 | */ |
||
121 | public $selection_display_configuration = []; |
||
122 | |||
123 | /** |
||
124 | * Selection display plugin collection. |
||
125 | * |
||
126 | * @var \Drupal\Core\Plugin\DefaultSingleLazyPluginCollection |
||
127 | */ |
||
128 | protected $selectionDisplayCollection; |
||
129 | |||
130 | /** |
||
131 | * The widget selector plugin ID. |
||
132 | * |
||
133 | * @var string |
||
134 | */ |
||
135 | public $widget_selector; |
||
136 | |||
137 | /** |
||
138 | * The widget selector plugin configuration. |
||
139 | * |
||
140 | * @var array |
||
141 | */ |
||
142 | public $widget_selector_configuration = []; |
||
143 | |||
144 | /** |
||
145 | * Widget selector plugin collection. |
||
146 | * |
||
147 | * @var \Drupal\Core\Plugin\DefaultSingleLazyPluginCollection |
||
148 | */ |
||
149 | protected $widgetSelectorCollection; |
||
150 | |||
151 | /** |
||
152 | * Additional widget parameters. |
||
153 | * |
||
154 | * @var array |
||
155 | */ |
||
156 | protected $additional_widget_parameters = []; |
||
157 | |||
158 | /** |
||
159 | * Name of the form class. |
||
160 | * |
||
161 | * @var string |
||
162 | */ |
||
163 | protected $form_class = '\Drupal\entity_browser\Form\EntityBrowserForm'; |
||
164 | |||
165 | /** |
||
166 | * {@inheritdoc} |
||
167 | */ |
||
168 | public function id() { |
||
169 | return $this->name; |
||
170 | } |
||
171 | |||
172 | /** |
||
173 | * {@inheritdoc} |
||
174 | */ |
||
175 | public function getName() { |
||
178 | |||
179 | /** |
||
180 | * {@inheritdoc} |
||
181 | */ |
||
182 | public function setName($name) { |
||
183 | $this->name = $name; |
||
184 | return $this; |
||
185 | } |
||
186 | |||
187 | /** |
||
188 | * {@inheritdoc} |
||
189 | */ |
||
190 | public function getDisplay() { |
||
193 | |||
194 | /** |
||
195 | * {@inheritdoc} |
||
196 | */ |
||
197 | public function setLabel($label) { |
||
198 | $this->label = $label; |
||
199 | return $this; |
||
200 | } |
||
201 | |||
202 | /** |
||
203 | * {@inheritdoc} |
||
204 | */ |
||
205 | public function setDisplay($display) { |
||
206 | $this->display = $display; |
||
207 | $this->displayPluginCollection = NULL; |
||
208 | $this->getDisplay(); |
||
209 | return $this; |
||
210 | } |
||
211 | |||
212 | /** |
||
213 | * {@inheritdoc} |
||
214 | */ |
||
215 | public function setWidgetSelector($widget_selector) { |
||
216 | $this->widget_selector = $widget_selector; |
||
217 | $this->widgetSelectorCollection = NULL; |
||
218 | $this->getWidgetSelector(); |
||
219 | return $this; |
||
220 | } |
||
221 | |||
222 | /** |
||
223 | * {@inheritdoc} |
||
224 | */ |
||
225 | public function setSelectionDisplay($selection_display) { |
||
226 | $this->selection_display = $selection_display; |
||
227 | $this->selectionDisplayCollection = NULL; |
||
228 | $this->getSelectionDisplay(); |
||
229 | return $this; |
||
230 | } |
||
231 | |||
232 | /** |
||
233 | * Returns display plugin collection. |
||
234 | * |
||
235 | * @return \Drupal\Core\Plugin\DefaultSingleLazyPluginCollection |
||
236 | * The tag plugin collection. |
||
237 | */ |
||
238 | protected function displayPluginCollection() { |
||
245 | |||
246 | /** |
||
247 | * Returns the plugin collections used by this entity. |
||
248 | * |
||
249 | * @return \Drupal\Component\Plugin\LazyPluginCollection[] |
||
250 | * An array of plugin collections, keyed by the property name they use to |
||
251 | * store their configuration. |
||
252 | */ |
||
253 | public function getPluginCollections() { |
||
254 | return [ |
||
255 | 'widgets' => $this->getWidgets(), |
||
256 | 'widget_selector_configuration' => $this->widgetSelectorPluginCollection(), |
||
257 | 'display_configuration' => $this->displayPluginCollection(), |
||
258 | 'selection_display_configuration' => $this->selectionDisplayPluginCollection(), |
||
259 | ]; |
||
260 | } |
||
261 | |||
262 | /** |
||
263 | * {@inheritdoc} |
||
264 | */ |
||
265 | public function getWidget($widget) { |
||
268 | |||
269 | /** |
||
270 | * {@inheritdoc} |
||
271 | */ |
||
272 | public function getWidgets() { |
||
282 | |||
283 | /** |
||
284 | * {@inheritdoc} |
||
285 | */ |
||
286 | public function addWidget(array $configuration) { |
||
291 | |||
292 | /** |
||
293 | * {@inheritdoc} |
||
294 | */ |
||
295 | public function deleteWidget(WidgetInterface $widget) { |
||
296 | $this->getWidgets()->removeInstanceId($widget->uuid()); |
||
297 | $this->save(); |
||
298 | return $this; |
||
300 | |||
301 | /** |
||
302 | * {@inheritdoc} |
||
303 | */ |
||
304 | public function getFirstWidget() { |
||
316 | |||
317 | /** |
||
318 | * {@inheritdoc} |
||
319 | */ |
||
320 | public function addAdditionalWidgetParameters(array $parameters) { |
||
325 | |||
326 | /** |
||
327 | * {@inheritdoc} |
||
328 | */ |
||
329 | public function getAdditionalWidgetParameters() { |
||
333 | |||
334 | /** |
||
335 | * Returns selection display plugin collection. |
||
336 | * |
||
337 | * @return \Drupal\Core\Plugin\DefaultSingleLazyPluginCollection |
||
338 | * The tag plugin collection. |
||
339 | */ |
||
340 | protected function selectionDisplayPluginCollection() { |
||
347 | |||
348 | /** |
||
349 | * {@inheritdoc} |
||
350 | */ |
||
351 | public function getSelectionDisplay() { |
||
354 | |||
355 | /** |
||
356 | * Returns widget selector plugin collection. |
||
357 | * |
||
358 | * @return \Drupal\Core\Plugin\DefaultSingleLazyPluginCollection |
||
359 | * The tag plugin collection. |
||
360 | */ |
||
361 | protected function widgetSelectorPluginCollection() { |
||
372 | |||
373 | /** |
||
374 | * {@inheritdoc} |
||
375 | */ |
||
376 | public function getWidgetSelector() { |
||
379 | |||
380 | /** |
||
381 | * {@inheritdoc} |
||
382 | */ |
||
383 | public function route() { |
||
403 | |||
404 | /** |
||
405 | * {@inheritdoc} |
||
406 | */ |
||
407 | public function preSave(EntityStorageInterface $storage) { |
||
419 | |||
420 | /** |
||
421 | * Prevent plugin collections from being serialized and correctly serialize |
||
422 | * selected entities. |
||
423 | */ |
||
424 | public function __sleep() { |
||
442 | |||
443 | /** |
||
444 | * {@inheritdoc} |
||
445 | */ |
||
446 | public function postSave(EntityStorageInterface $storage, $update = TRUE) { |
||
452 | |||
453 | /** |
||
454 | * {@inheritdoc} |
||
455 | */ |
||
456 | public static function postDelete(EntityStorageInterface $storage, array $entities) { |
||
462 | |||
463 | /** |
||
464 | * {@inheritdoc} |
||
465 | */ |
||
466 | public function getFormObject() { |
||
471 | |||
472 | /** |
||
473 | * {@inheritdoc} |
||
474 | */ |
||
475 | protected function urlRouteParameters($rel) { |
||
484 | |||
485 | } |
||
486 |