Total Complexity | 137 |
Total Lines | 1149 |
Duplicated Lines | 0 % |
Changes | 17 | ||
Bugs | 0 | Features | 0 |
Complex classes like BaseElement often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use BaseElement, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
51 | class BaseElement extends DataObject implements CMSPreviewable |
||
52 | { |
||
53 | /** |
||
54 | * Override this on your custom elements to specify a CSS icon class |
||
55 | * |
||
56 | * @var string |
||
57 | */ |
||
58 | private static $icon = 'font-icon-block-layout'; |
||
59 | |||
60 | /** |
||
61 | * Describe the purpose of this element |
||
62 | * |
||
63 | * @config |
||
64 | * @var string |
||
65 | */ |
||
66 | private static $description = 'Base element class'; |
||
67 | |||
68 | private static $db = [ |
||
69 | 'Title' => 'Varchar(255)', |
||
70 | 'ShowTitle' => 'Boolean', |
||
71 | 'Sort' => 'Int', |
||
72 | 'ExtraClass' => 'Varchar(255)', |
||
73 | 'Style' => 'Varchar(255)' |
||
74 | ]; |
||
75 | |||
76 | private static $has_one = [ |
||
77 | 'Parent' => ElementalArea::class |
||
78 | ]; |
||
79 | |||
80 | private static $extensions = [ |
||
81 | Versioned::class |
||
82 | ]; |
||
83 | |||
84 | private static $casting = [ |
||
85 | 'BlockSchema' => DBObjectType::class, |
||
86 | 'IsLiveVersion' => DBBoolean::class, |
||
87 | 'IsPublished' => DBBoolean::class, |
||
88 | 'canCreate' => DBBoolean::class, |
||
89 | 'canPublish' => DBBoolean::class, |
||
90 | 'canUnpublish' => DBBoolean::class, |
||
91 | 'canDelete' => DBBoolean::class, |
||
92 | ]; |
||
93 | |||
94 | private static $indexes = [ |
||
95 | 'Sort' => true, |
||
96 | ]; |
||
97 | |||
98 | private static $versioned_gridfield_extensions = true; |
||
99 | |||
100 | private static $table_name = 'Element'; |
||
101 | |||
102 | /** |
||
103 | * @var string |
||
104 | */ |
||
105 | private static $controller_class = ElementController::class; |
||
106 | |||
107 | /** |
||
108 | * @var string |
||
109 | */ |
||
110 | private static $controller_template = 'ElementHolder'; |
||
111 | |||
112 | /** |
||
113 | * @var ElementController |
||
114 | */ |
||
115 | protected $controller; |
||
116 | |||
117 | private static $show_stage_link = true; |
||
118 | |||
119 | private static $show_live_link = true; |
||
120 | |||
121 | /** |
||
122 | * Cache various data to improve CMS load time |
||
123 | * |
||
124 | * @internal |
||
125 | * @var array |
||
126 | */ |
||
127 | protected $cacheData; |
||
128 | |||
129 | private static $default_sort = 'Sort'; |
||
130 | |||
131 | private static $singular_name = 'block'; |
||
132 | |||
133 | private static $plural_name = 'blocks'; |
||
134 | |||
135 | private static $summary_fields = [ |
||
136 | 'EditorPreview' => 'Summary' |
||
137 | ]; |
||
138 | |||
139 | /** |
||
140 | * @config |
||
141 | * @var array |
||
142 | */ |
||
143 | private static $styles = []; |
||
144 | |||
145 | private static $searchable_fields = [ |
||
146 | 'ID' => [ |
||
147 | 'field' => NumericField::class, |
||
148 | ], |
||
149 | 'Title', |
||
150 | 'LastEdited' |
||
151 | ]; |
||
152 | |||
153 | /** |
||
154 | * Enable for backwards compatibility |
||
155 | * |
||
156 | * @var boolean |
||
157 | */ |
||
158 | private static $disable_pretty_anchor_name = false; |
||
159 | |||
160 | /** |
||
161 | * Set to false to prevent an in-line edit form from showing in an elemental area. Instead the element will be |
||
162 | * clickable and a GridFieldDetailForm will be used. |
||
163 | * |
||
164 | * @config |
||
165 | * @var bool |
||
166 | */ |
||
167 | private static $inline_editable = true; |
||
168 | |||
169 | /** |
||
170 | * Display a show title button |
||
171 | * |
||
172 | * @config |
||
173 | * @var boolean |
||
174 | */ |
||
175 | private static $displays_title_in_template = true; |
||
176 | |||
177 | /** |
||
178 | * Determines whether a block should be indexable in search. |
||
179 | * |
||
180 | * @config |
||
181 | * @var boolean |
||
182 | * @see ElementalPageExtension::getElementsForSearch() |
||
183 | */ |
||
184 | private static $search_indexable = true; |
||
185 | |||
186 | /** |
||
187 | * Store used anchor names, this is to avoid title clashes |
||
188 | * when calling 'getAnchor' |
||
189 | * |
||
190 | * @var array |
||
191 | */ |
||
192 | protected static $used_anchors = []; |
||
193 | |||
194 | /** |
||
195 | * For caching 'getAnchor' |
||
196 | * |
||
197 | * @var string |
||
198 | */ |
||
199 | protected $anchor = null; |
||
200 | |||
201 | /** |
||
202 | * Basic permissions, defaults to page perms where possible. |
||
203 | * |
||
204 | * @param Member $member |
||
205 | * @return boolean |
||
206 | */ |
||
207 | public function canView($member = null) |
||
221 | } |
||
222 | |||
223 | /** |
||
224 | * Basic permissions, defaults to page perms where possible. |
||
225 | * |
||
226 | * @param Member $member |
||
227 | * |
||
228 | * @return boolean |
||
229 | */ |
||
230 | public function canEdit($member = null) |
||
244 | } |
||
245 | |||
246 | /** |
||
247 | * Basic permissions, defaults to page perms where possible. |
||
248 | * |
||
249 | * Uses archive not delete so that current stage is respected i.e if a |
||
250 | * element is not published, then it can be deleted by someone who doesn't |
||
251 | * have publishing permissions. |
||
252 | * |
||
253 | * @param Member $member |
||
254 | * |
||
255 | * @return boolean |
||
256 | */ |
||
257 | public function canDelete($member = null) |
||
258 | { |
||
259 | $extended = $this->extendedCan(__FUNCTION__, $member); |
||
260 | |||
261 | if ($extended !== null) { |
||
262 | return $extended; |
||
263 | } |
||
264 | |||
265 | if ($this->hasMethod('getPage')) { |
||
266 | if ($page = $this->getPage()) { |
||
267 | if ($page->hasExtension(Versioned::class)) { |
||
268 | return $page->canArchive($member); |
||
269 | } else { |
||
270 | return $page->canDelete($member); |
||
271 | } |
||
272 | } |
||
273 | } |
||
274 | |||
275 | return (Permission::check('CMS_ACCESS', 'any', $member)) ? true : null; |
||
276 | } |
||
277 | |||
278 | /** |
||
279 | * Basic permissions, defaults to page perms where possible. |
||
280 | * |
||
281 | * @param Member $member |
||
282 | * @param array $context |
||
283 | * |
||
284 | * @return boolean |
||
285 | */ |
||
286 | public function canCreate($member = null, $context = array()) |
||
287 | { |
||
288 | $extended = $this->extendedCan(__FUNCTION__, $member); |
||
289 | if ($extended !== null) { |
||
290 | return $extended; |
||
291 | } |
||
292 | |||
293 | return (Permission::check('CMS_ACCESS', 'any', $member)) ? true : null; |
||
294 | } |
||
295 | |||
296 | /** |
||
297 | * Increment the sort order if one hasn't been already defined. This |
||
298 | * ensures that new elements are created at the end of the list by default. |
||
299 | * |
||
300 | * {@inheritDoc} |
||
301 | */ |
||
302 | public function onBeforeWrite() |
||
303 | { |
||
304 | parent::onBeforeWrite(); |
||
305 | |||
306 | // If a Sort has already been set, then we can exit early |
||
307 | if ($this->Sort) { |
||
308 | return; |
||
309 | } |
||
310 | |||
311 | // If no ParentID is currently set for the Element, then we don't want to define an initial Sort yet |
||
312 | if (!$this->ParentID) { |
||
313 | return; |
||
314 | } |
||
315 | |||
316 | if ($this->hasExtension(Versioned::class)) { |
||
317 | $records = Versioned::get_by_stage(BaseElement::class, Versioned::DRAFT); |
||
318 | } else { |
||
319 | $records = BaseElement::get(); |
||
320 | } |
||
321 | |||
322 | $records = $records->filter('ParentID', $this->ParentID); |
||
323 | |||
324 | $this->Sort = $records->max('Sort') + 1; |
||
325 | } |
||
326 | |||
327 | public function getCMSFields() |
||
328 | { |
||
329 | $this->beforeUpdateCMSFields(function (FieldList $fields) { |
||
330 | // Remove relationship fields |
||
331 | $fields->removeByName('ParentID'); |
||
332 | $fields->removeByName('Sort'); |
||
333 | |||
334 | // Remove link and file tracking tabs |
||
335 | $fields->removeByName(['LinkTracking', 'FileTracking']); |
||
336 | |||
337 | $fields->addFieldToTab( |
||
338 | 'Root.Settings', |
||
339 | TextField::create('ExtraClass', _t(__CLASS__ . '.ExtraCssClassesLabel', 'Custom CSS classes')) |
||
340 | ->setAttribute( |
||
341 | 'placeholder', |
||
342 | _t(__CLASS__ . '.ExtraCssClassesPlaceholder', 'my_class another_class') |
||
343 | ) |
||
344 | ); |
||
345 | |||
346 | // Rename the "Settings" tab |
||
347 | $fields->fieldByName('Root.Settings') |
||
348 | ->setTitle(_t(__CLASS__ . '.SettingsTabLabel', 'Settings')); |
||
349 | |||
350 | // Add a combined field for "Title" and "Displayed" checkbox in a Bootstrap input group |
||
351 | $fields->removeByName('ShowTitle'); |
||
352 | |||
353 | if ($this->config()->get('displays_title_in_template')) { |
||
354 | $fields->replaceField( |
||
355 | 'Title', |
||
356 | TextCheckboxGroupField::create() |
||
357 | ->setName('Title') |
||
358 | ); |
||
359 | } |
||
360 | |||
361 | // Rename the "Main" tab |
||
362 | $fields->fieldByName('Root.Main') |
||
363 | ->setTitle(_t(__CLASS__ . '.MainTabLabel', 'Content')); |
||
364 | |||
365 | $fields->addFieldsToTab('Root.Main', [ |
||
366 | HiddenField::create('AbsoluteLink', false, Director::absoluteURL($this->PreviewLink())), |
||
367 | HiddenField::create('LiveLink', false, Director::absoluteURL($this->Link())), |
||
368 | HiddenField::create('StageLink', false, Director::absoluteURL($this->PreviewLink())), |
||
369 | ]); |
||
370 | |||
371 | $styles = $this->config()->get('styles'); |
||
372 | |||
373 | if ($styles && count($styles ?? []) > 0) { |
||
374 | $styleDropdown = DropdownField::create('Style', _t(__CLASS__.'.STYLE', 'Style variation'), $styles); |
||
375 | |||
376 | $fields->insertBefore($styleDropdown, 'ExtraClass'); |
||
377 | |||
378 | $styleDropdown->setEmptyString(_t(__CLASS__.'.CUSTOM_STYLES', 'Select a style..')); |
||
379 | } else { |
||
380 | $fields->removeByName('Style'); |
||
381 | } |
||
382 | |||
383 | // Hide the navigation section of the tabs in the React component {@see silverstripe/admin Tabs} |
||
384 | $rootTabset = $fields->fieldByName('Root'); |
||
385 | $rootTabset->setSchemaState(['hideNav' => true]); |
||
386 | |||
387 | if ($this->isInDB()) { |
||
388 | $fields->addFieldsToTab('Root.History', [ |
||
389 | HistoryViewerField::create('ElementHistory') |
||
390 | ->addExtraClass('history-viewer--standalone'), |
||
391 | ]); |
||
392 | // Add class to containing tab |
||
393 | $fields->fieldByName('Root.History') |
||
394 | ->addExtraClass('elemental-block__history-tab tab--history-viewer'); |
||
395 | |||
396 | // Hack: automatically navigate to the History tab with `#Root_History` is in the URL |
||
397 | // To unhack, fix this: https://github.com/silverstripe/silverstripe-admin/issues/911 |
||
398 | Requirements::customScript(<<<JS |
||
399 | document.addEventListener('DOMContentLoaded', () => { |
||
400 | var hash = window.location.hash.substr(1); |
||
401 | if (hash !== 'Root_History') { |
||
402 | return null; |
||
403 | } |
||
404 | jQuery('.cms-tabset-nav-primary li[aria-controls="Root_History"] a').trigger('click') |
||
405 | }); |
||
406 | JS |
||
407 | ); |
||
408 | } |
||
409 | }); |
||
410 | |||
411 | return parent::getCMSFields(); |
||
412 | } |
||
413 | |||
414 | /** |
||
415 | * Get the type of the current block, for use in GridField summaries, block |
||
416 | * type dropdowns etc. Examples are "Content", "File", "Media", etc. |
||
417 | * |
||
418 | * @return string |
||
419 | */ |
||
420 | public function getType() |
||
421 | { |
||
422 | $default = $this->i18n_singular_name() ?: 'Block'; |
||
423 | |||
424 | return _t(__CLASS__ . '.BlockType', $default); |
||
425 | } |
||
426 | |||
427 | /** |
||
428 | * Proxy through to configuration setting 'inline_editable' |
||
429 | * |
||
430 | * @return bool |
||
431 | */ |
||
432 | public function inlineEditable() |
||
433 | { |
||
434 | return static::config()->get('inline_editable'); |
||
435 | } |
||
436 | |||
437 | /** |
||
438 | * @param ElementController $controller |
||
439 | * |
||
440 | * @return $this |
||
441 | */ |
||
442 | public function setController($controller) |
||
443 | { |
||
444 | $this->controller = $controller; |
||
445 | |||
446 | return $this; |
||
447 | } |
||
448 | |||
449 | /** |
||
450 | * @throws Exception If the specified controller class doesn't exist |
||
451 | * |
||
452 | * @return ElementController |
||
453 | */ |
||
454 | public function getController() |
||
455 | { |
||
456 | if ($this->controller) { |
||
457 | return $this->controller; |
||
458 | } |
||
459 | |||
460 | $controllerClass = self::config()->controller_class; |
||
461 | |||
462 | if (!class_exists($controllerClass ?? '')) { |
||
463 | throw new Exception( |
||
464 | 'Could not find controller class ' . $controllerClass . ' as defined in ' . static::class |
||
465 | ); |
||
466 | } |
||
467 | |||
468 | $this->controller = Injector::inst()->create($controllerClass, $this); |
||
469 | $this->controller->doInit(); |
||
470 | |||
471 | return $this->controller; |
||
472 | } |
||
473 | |||
474 | /** |
||
475 | * @param string $name |
||
476 | * @return $this |
||
477 | */ |
||
478 | public function setAreaRelationNameCache($name) |
||
479 | { |
||
480 | $this->cacheData['area_relation_name'] = $name; |
||
481 | |||
482 | return $this; |
||
483 | } |
||
484 | |||
485 | /** |
||
486 | * @return Controller |
||
487 | */ |
||
488 | public function Top() |
||
489 | { |
||
490 | return (Controller::has_curr()) ? Controller::curr() : null; |
||
491 | } |
||
492 | |||
493 | /** |
||
494 | * Determines whether this elemental block is indexable in search. |
||
495 | * |
||
496 | * By default, this uses the configurable variable search_indexable, but |
||
497 | * this method can be overridden to provide more complex logic if required. |
||
498 | * |
||
499 | * @return boolean |
||
500 | */ |
||
501 | public function getSearchIndexable(): bool |
||
502 | { |
||
503 | return (bool) $this->config()->get('search_indexable'); |
||
504 | } |
||
505 | |||
506 | /** |
||
507 | * Provides content to be indexed in search. |
||
508 | * |
||
509 | * @return string |
||
510 | */ |
||
511 | public function getContentForSearchIndex(): string |
||
518 | } |
||
519 | |||
520 | /** |
||
521 | * Default way to render element in templates. Note that all blocks should |
||
522 | * be rendered through their {@link ElementController} class as this |
||
523 | * contains the holder styles. |
||
524 | * |
||
525 | * @return string|null HTML |
||
526 | */ |
||
527 | public function forTemplate($holder = true) |
||
528 | { |
||
529 | $templates = $this->getRenderTemplates(); |
||
530 | |||
531 | if ($templates) { |
||
532 | return $this->renderWith($templates); |
||
533 | } |
||
534 | |||
535 | return null; |
||
536 | } |
||
537 | |||
538 | /** |
||
539 | * @param string $suffix |
||
540 | * |
||
541 | * @return array |
||
542 | */ |
||
543 | public function getRenderTemplates($suffix = '') |
||
544 | { |
||
545 | $classes = ClassInfo::ancestry($this->ClassName); |
||
546 | $classes[static::class] = static::class; |
||
547 | $classes = array_reverse($classes ?? []); |
||
548 | $templates = []; |
||
549 | |||
550 | foreach ($classes as $key => $class) { |
||
551 | if ($class == BaseElement::class) { |
||
552 | continue; |
||
553 | } |
||
554 | |||
555 | if ($class == DataObject::class) { |
||
556 | break; |
||
557 | } |
||
558 | |||
559 | if ($style = $this->Style) { |
||
560 | $templates[$class][] = $class . $suffix . '_'. $this->getAreaRelationName() . '_' . $style; |
||
561 | $templates[$class][] = $class . $suffix . '_' . $style; |
||
562 | } |
||
563 | $templates[$class][] = $class . $suffix . '_'. $this->getAreaRelationName(); |
||
564 | $templates[$class][] = $class . $suffix; |
||
565 | } |
||
566 | |||
567 | $this->extend('updateRenderTemplates', $templates, $suffix); |
||
568 | |||
569 | $templateFlat = []; |
||
570 | foreach ($templates as $class => $variations) { |
||
571 | $templateFlat = array_merge($templateFlat, $variations); |
||
572 | } |
||
573 | |||
574 | return $templateFlat; |
||
575 | } |
||
576 | |||
577 | /** |
||
578 | * Given form data (wit |
||
579 | * |
||
580 | * @param $data |
||
581 | */ |
||
582 | public function updateFromFormData($data) |
||
583 | { |
||
584 | $cmsFields = $this->getCMSFields(); |
||
585 | |||
586 | foreach ($data as $field => $datum) { |
||
587 | $field = $cmsFields->dataFieldByName($field); |
||
588 | |||
589 | if (!$field) { |
||
590 | continue; |
||
591 | } |
||
592 | |||
593 | $field->setSubmittedValue($datum); |
||
594 | $field->saveInto($this); |
||
595 | } |
||
596 | } |
||
597 | |||
598 | /** |
||
599 | * Strip all namespaces from class namespace. |
||
600 | * |
||
601 | * @param string $classname e.g. "\Fully\Namespaced\Class" |
||
602 | * |
||
603 | * @return string following the param example, "Class" |
||
604 | */ |
||
605 | protected function stripNamespacing($classname) |
||
606 | { |
||
607 | $classParts = explode('\\', $classname ?? ''); |
||
608 | return array_pop($classParts); |
||
609 | } |
||
610 | |||
611 | /** |
||
612 | * @return string |
||
613 | */ |
||
614 | public function getSimpleClassName() |
||
615 | { |
||
616 | return strtolower($this->sanitiseClassName($this->ClassName, '__') ?? ''); |
||
617 | } |
||
618 | |||
619 | /** |
||
620 | * Despite the name of the method, getPage can return any type of DataObject |
||
621 | * @return null|DataObject |
||
622 | * @throws \Psr\Container\NotFoundExceptionInterface |
||
623 | * @throws \SilverStripe\ORM\ValidationException |
||
624 | */ |
||
625 | public function getPage() |
||
640 | } |
||
641 | |||
642 | /** |
||
643 | * Get a unique anchor name |
||
644 | * |
||
645 | * @return string |
||
646 | */ |
||
647 | public function getAnchor() |
||
680 | } |
||
681 | |||
682 | /** |
||
683 | * Get anchors in this block's content. |
||
684 | * Used to populate the "anchor on a page" link in the WYSIWYG |
||
685 | * |
||
686 | * By default, this finds anchors in any HTMLText field on the block, but |
||
687 | * this method should be overridden if anchors are provided in other ways |
||
688 | * for this block or if not all HTMLText fields for this block are |
||
689 | * displayed on the front-end. |
||
690 | */ |
||
691 | public function getAnchorsInContent(): array |
||
692 | { |
||
693 | $anchors = [$this->getAnchor()]; |
||
694 | $anchorRegex = "/\\s+(name|id)\\s*=\\s*([\"'])([^\\2\\s>]*?)\\2|\\s+(name|id)\\s*=\\s*([^\"']+)[\\s +>]/im"; |
||
695 | $allFields = DataObject::getSchema()->fieldSpecs($this); |
||
696 | foreach ($allFields as $field => $fieldSpec) { |
||
697 | $fieldObj = $this->owner->dbObject($field); |
||
698 | if ($fieldObj instanceof DBHTMLText) { |
||
699 | $parseSuccess = preg_match_all($anchorRegex, $fieldObj->getValue() ?? '', $matches); |
||
700 | if ($parseSuccess >= 1) { |
||
701 | $fieldAnchors = array_values(array_filter( |
||
702 | array_merge($matches[3], $matches[5]) |
||
703 | )); |
||
704 | $anchors = array_merge($anchors, $fieldAnchors); |
||
705 | } |
||
706 | } |
||
707 | } |
||
708 | $anchors = array_unique($anchors); |
||
709 | |||
710 | $this->extend('updateAnchorsInContent', $anchors); |
||
711 | return $anchors; |
||
712 | } |
||
713 | |||
714 | /** |
||
715 | * @param string|null $action |
||
716 | * @return string|null |
||
717 | * @throws \Psr\Container\NotFoundExceptionInterface |
||
718 | * @throws \SilverStripe\ORM\ValidationException |
||
719 | */ |
||
720 | public function AbsoluteLink($action = null) |
||
721 | { |
||
722 | $page = $this->getPage(); |
||
723 | |||
724 | if ($page && ClassInfo::hasMethod($page, 'AbsoluteLink')) { |
||
725 | $link = $page->AbsoluteLink($action) . '#' . $this->getAnchor(); |
||
726 | $this->extend('updateAbsoluteLink', $link); |
||
727 | |||
728 | return $link; |
||
729 | } |
||
730 | |||
731 | return null; |
||
732 | } |
||
733 | |||
734 | /** |
||
735 | * @param string|null $action |
||
736 | * @return string|null |
||
737 | * @throws \Psr\Container\NotFoundExceptionInterface |
||
738 | * @throws \SilverStripe\ORM\ValidationException |
||
739 | */ |
||
740 | public function Link($action = null) |
||
741 | { |
||
742 | $page = $this->getPage(); |
||
743 | |||
744 | if ($page && ClassInfo::hasMethod($page, 'Link')) { |
||
745 | $link = $page->Link($action) . '#' . $this->getAnchor(); |
||
746 | $this->extend('updateLink', $link); |
||
747 | |||
748 | return $link; |
||
749 | } |
||
750 | |||
751 | return null; |
||
752 | } |
||
753 | |||
754 | /** |
||
755 | * @param string|null $action |
||
756 | * @return string|null |
||
757 | * @throws \Psr\Container\NotFoundExceptionInterface |
||
758 | * @throws \SilverStripe\ORM\ValidationException |
||
759 | */ |
||
760 | public function PreviewLink($action = null) |
||
761 | { |
||
762 | $link = null; |
||
763 | if ($page = $this->getPage()) { |
||
764 | if (ClassInfo::hasMethod($page, 'Link')) { |
||
765 | $link = $page->Link($action); |
||
766 | } |
||
767 | if (!$link && ($page instanceof CMSPreviewable)) { |
||
768 | $link = $page->PreviewLink($action); |
||
769 | } |
||
770 | if ($link) { |
||
771 | // The ElementalPreview getvar is used in ElementalPageExtension |
||
772 | // The anchor must be at the end of the URL to function correctly |
||
773 | $link .= '?ElementalPreview=' . mt_rand() . '#' . $this->getAnchor(); |
||
774 | } |
||
775 | } |
||
776 | |||
777 | $this->extend('updatePreviewLink', $link); |
||
778 | return $link; |
||
779 | } |
||
780 | |||
781 | /** |
||
782 | * @return boolean |
||
783 | */ |
||
784 | public function isCMSPreview() |
||
785 | { |
||
786 | if (Controller::has_curr()) { |
||
787 | $controller = Controller::curr(); |
||
788 | |||
789 | if ($controller->getRequest()->requestVar('CMSPreview')) { |
||
790 | return true; |
||
791 | } |
||
792 | } |
||
793 | |||
794 | return false; |
||
795 | } |
||
796 | |||
797 | /** |
||
798 | * @param bool $directLink Indicates that the GridFieldDetailEdit form link should be given even if the block can be |
||
799 | * edited in-line. |
||
800 | * @return null|string |
||
801 | * @throws \SilverStripe\ORM\ValidationException |
||
802 | */ |
||
803 | public function CMSEditLink($directLink = false) |
||
804 | { |
||
805 | // Allow for repeated calls to be returned from cache |
||
806 | if (isset($this->cacheData['cms_edit_link'])) { |
||
807 | return $this->cacheData['cms_edit_link']; |
||
808 | } |
||
809 | |||
810 | $link = $this->getElementCMSLink($directLink); |
||
811 | $this->extend('updateCMSEditLink', $link); |
||
812 | |||
813 | if ($link) { |
||
814 | $this->cacheData['cms_edit_link'] = $link; |
||
815 | } |
||
816 | |||
817 | return $link; |
||
818 | } |
||
819 | |||
820 | /** |
||
821 | * @param bool $directLink |
||
822 | * @return null|string |
||
823 | */ |
||
824 | private function getElementCMSLink(bool $directLink) |
||
825 | { |
||
826 | $relationName = $this->getAreaRelationName(); |
||
827 | $page = $this->getPage(); |
||
828 | |||
829 | $link = null; |
||
830 | |||
831 | if (!$page) { |
||
832 | return $link; |
||
833 | } |
||
834 | |||
835 | if ($page instanceof SiteTree) { |
||
836 | $link = $page->CMSEditLink(); |
||
837 | } elseif (ClassInfo::hasMethod($page, 'CMSEditLink')) { |
||
838 | $link = Controller::join_links($page->CMSEditLink(), 'ItemEditForm'); |
||
839 | } |
||
840 | // In-line editable blocks should just take you to the page. |
||
841 | // Editable ones should add the suffix for detail form. |
||
842 | if (!$this->inlineEditable() || $directLink) { |
||
843 | if ($page instanceof SiteTree) { |
||
844 | return Controller::join_links( |
||
845 | singleton(CMSPageEditController::class)->Link('EditForm'), |
||
846 | $page->ID, |
||
847 | 'field', |
||
848 | $relationName, |
||
849 | 'item', |
||
850 | $this->ID, |
||
851 | 'edit' |
||
852 | ); |
||
853 | } else { |
||
854 | // If $page is not a Page, then generate $link base on $page->CMSEditLink() |
||
855 | return Controller::join_links( |
||
856 | $link, |
||
857 | 'field', |
||
858 | $relationName, |
||
859 | 'item', |
||
860 | $this->ID, |
||
861 | 'edit' |
||
862 | ); |
||
863 | } |
||
864 | } |
||
865 | |||
866 | return $link; |
||
867 | } |
||
868 | |||
869 | /** |
||
870 | * Retrieve a elemental area relation for creating cms links |
||
871 | * |
||
872 | * @return int|string The name of a valid elemental area relation |
||
873 | * @throws \Psr\Container\NotFoundExceptionInterface |
||
874 | * @throws \SilverStripe\ORM\ValidationException |
||
875 | */ |
||
876 | public function getAreaRelationName() |
||
877 | { |
||
878 | // Allow repeated calls to return from internal cache |
||
879 | if (isset($this->cacheData['area_relation_name'])) { |
||
880 | return $this->cacheData['area_relation_name']; |
||
881 | } |
||
882 | |||
883 | $page = $this->getPage(); |
||
884 | |||
885 | $result = 'ElementalArea'; |
||
886 | |||
887 | if ($page) { |
||
888 | $has_one = $page->config()->get('has_one'); |
||
889 | $area = $this->Parent(); |
||
890 | |||
891 | foreach ($has_one as $relationName => $relationClass) { |
||
892 | if ($page instanceof BaseElement && $relationName === 'Parent') { |
||
893 | continue; |
||
894 | } |
||
895 | if ($relationClass === $area->ClassName && $page->{$relationName}()->ID === $area->ID) { |
||
896 | $result = $relationName; |
||
897 | break; |
||
898 | } |
||
899 | } |
||
900 | } |
||
901 | |||
902 | $this->setAreaRelationNameCache($result); |
||
903 | |||
904 | return $result; |
||
905 | } |
||
906 | |||
907 | /** |
||
908 | * Sanitise a model class' name for inclusion in a link. |
||
909 | * |
||
910 | * @return string |
||
911 | */ |
||
912 | public function sanitiseClassName($class, $delimiter = '-') |
||
913 | { |
||
914 | return str_replace('\\', $delimiter ?? '', $class ?? ''); |
||
915 | } |
||
916 | |||
917 | public function unsanitiseClassName($class, $delimiter = '-') |
||
918 | { |
||
919 | return str_replace($delimiter ?? '', '\\', $class ?? ''); |
||
920 | } |
||
921 | |||
922 | /** |
||
923 | * @return null|string |
||
924 | * @throws \Psr\Container\NotFoundExceptionInterface |
||
925 | * @throws \SilverStripe\ORM\ValidationException |
||
926 | */ |
||
927 | public function getEditLink() |
||
928 | { |
||
929 | return Director::absoluteURL($this->CMSEditLink()); |
||
930 | } |
||
931 | |||
932 | /** |
||
933 | * @return DBField|null |
||
934 | * @throws \Psr\Container\NotFoundExceptionInterface |
||
935 | * @throws \SilverStripe\ORM\ValidationException |
||
936 | */ |
||
937 | public function PageCMSEditLink() |
||
938 | { |
||
939 | if ($page = $this->getPage()) { |
||
940 | return DBField::create_field('HTMLText', sprintf( |
||
941 | '<a href="%s">%s</a>', |
||
942 | $page->CMSEditLink(), |
||
943 | $page->Title |
||
944 | )); |
||
945 | } |
||
946 | |||
947 | return null; |
||
948 | } |
||
949 | |||
950 | /** |
||
951 | * @return string |
||
952 | */ |
||
953 | public function getMimeType() |
||
954 | { |
||
955 | return 'text/html'; |
||
956 | } |
||
957 | |||
958 | /** |
||
959 | * This can be overridden on child elements to create a summary for display |
||
960 | * in GridFields. |
||
961 | * |
||
962 | * @return string |
||
963 | */ |
||
964 | public function getSummary() |
||
965 | { |
||
966 | return ''; |
||
967 | } |
||
968 | |||
969 | /** |
||
970 | * The block config defines a set of data (usually set through config on the element) that will be made available in |
||
971 | * client side config. Individual element types may choose to add config variable for use in React code |
||
972 | * |
||
973 | * @return array |
||
974 | */ |
||
975 | public static function getBlockConfig() |
||
976 | { |
||
977 | return []; |
||
978 | } |
||
979 | |||
980 | /** |
||
981 | * The block actions is an associative array available for providing data to the client side to be used to describe |
||
982 | * actions that may be performed. This is available as a plain "ObjectType" in the GraphQL schema. |
||
983 | * |
||
984 | * By default the only action is "edit" which is simply the URL where the block may be edited. |
||
985 | * |
||
986 | * To modify the actions, either use the extension point or overload the `provideBlockSchema` method. |
||
987 | * |
||
988 | * @internal This API may change in future. Treat this as a `final` method. |
||
989 | * @return array |
||
990 | */ |
||
991 | public function getBlockSchema() |
||
992 | { |
||
993 | $blockSchema = $this->provideBlockSchema(); |
||
994 | |||
995 | $this->extend('updateBlockSchema', $blockSchema); |
||
996 | |||
997 | return $blockSchema; |
||
998 | } |
||
999 | |||
1000 | /** |
||
1001 | * Provide block schema data, which will be serialised and sent via GraphQL to the editor client. |
||
1002 | * |
||
1003 | * Overload this method in child element classes to augment, or use the extension point on `getBlockSchema` |
||
1004 | * to update it from an `Extension`. |
||
1005 | * |
||
1006 | * @return array |
||
1007 | * @throws SchemaBuilderException |
||
1008 | * @throws ValidationException |
||
1009 | */ |
||
1010 | protected function provideBlockSchema() |
||
1016 | ], |
||
1017 | ]; |
||
1018 | } |
||
1019 | |||
1020 | /** |
||
1021 | * Generate markup for element type icons suitable for use in GridFields. |
||
1022 | * |
||
1023 | * @return null|DBHTMLText |
||
1024 | */ |
||
1025 | public function getIcon() |
||
1026 | { |
||
1027 | $data = ArrayData::create([]); |
||
1028 | |||
1029 | $iconClass = $this->config()->get('icon'); |
||
1030 | if ($iconClass) { |
||
1031 | $data->IconClass = $iconClass; |
||
1032 | |||
1033 | // Add versioned states (rendered as a circle over the icon) |
||
1034 | if ($this->hasExtension(Versioned::class)) { |
||
1035 | $data->IsVersioned = true; |
||
1036 | if ($this->isOnDraftOnly()) { |
||
1037 | $data->VersionState = 'draft'; |
||
1038 | $data->VersionStateTitle = _t( |
||
1039 | 'SilverStripe\\Versioned\\VersionedGridFieldState\\VersionedGridFieldState.ADDEDTODRAFTHELP', |
||
1040 | 'Item has not been published yet' |
||
1041 | ); |
||
1042 | } elseif ($this->isModifiedOnDraft()) { |
||
1043 | $data->VersionState = 'modified'; |
||
1044 | $data->VersionStateTitle = $data->VersionStateTitle = _t( |
||
1045 | 'SilverStripe\\Versioned\\VersionedGridFieldState\\VersionedGridFieldState.MODIFIEDONDRAFTHELP', |
||
1046 | 'Item has unpublished changes' |
||
1047 | ); |
||
1048 | } |
||
1049 | } |
||
1050 | |||
1051 | return $data->renderWith(__CLASS__ . '/PreviewIcon'); |
||
1052 | } |
||
1053 | |||
1054 | return null; |
||
1055 | } |
||
1056 | |||
1057 | /** |
||
1058 | * Get a description for this content element, if available |
||
1059 | * |
||
1060 | * @return string |
||
1061 | */ |
||
1062 | public function getDescription() |
||
1063 | { |
||
1064 | $description = $this->config()->uninherited('description'); |
||
1065 | if ($description) { |
||
1066 | return _t(__CLASS__ . '.Description', $description); |
||
1067 | } |
||
1068 | return ''; |
||
1069 | } |
||
1070 | |||
1071 | /** |
||
1072 | * Generate markup for element type, with description suitable for use in |
||
1073 | * GridFields. |
||
1074 | * |
||
1075 | * @return DBField |
||
1076 | */ |
||
1077 | public function getTypeNice() |
||
1078 | { |
||
1079 | $description = $this->getDescription(); |
||
1080 | $desc = ($description) ? ' <span class="element__note"> — ' . $description . '</span>' : ''; |
||
1081 | |||
1082 | return DBField::create_field( |
||
1083 | 'HTMLVarchar', |
||
1084 | $this->getType() . $desc |
||
1085 | ); |
||
1086 | } |
||
1087 | |||
1088 | /** |
||
1089 | * @return \SilverStripe\ORM\FieldType\DBHTMLText |
||
1090 | */ |
||
1091 | public function getEditorPreview() |
||
1092 | { |
||
1093 | $templates = $this->getRenderTemplates('_EditorPreview'); |
||
1094 | $templates[] = BaseElement::class . '_EditorPreview'; |
||
1095 | |||
1096 | return $this->renderWith($templates); |
||
1097 | } |
||
1098 | |||
1099 | /** |
||
1100 | * @return Member |
||
1101 | */ |
||
1102 | public function getAuthor() |
||
1103 | { |
||
1104 | if ($this->AuthorID) { |
||
1105 | return Member::get()->byId($this->AuthorID); |
||
1106 | } |
||
1107 | |||
1108 | return null; |
||
1109 | } |
||
1110 | |||
1111 | /** |
||
1112 | * Get a user defined style variant for this element, if available |
||
1113 | * |
||
1114 | * @return string |
||
1115 | */ |
||
1116 | public function getStyleVariant() |
||
1117 | { |
||
1118 | $style = $this->Style; |
||
1119 | $styles = $this->config()->get('styles'); |
||
1120 | |||
1121 | if (isset($styles[$style])) { |
||
1122 | $style = strtolower($style ?? ''); |
||
1123 | } else { |
||
1124 | $style = ''; |
||
1125 | } |
||
1126 | |||
1127 | $this->extend('updateStyleVariant', $style); |
||
1128 | |||
1129 | return $style; |
||
1130 | } |
||
1131 | |||
1132 | /** |
||
1133 | * @return mixed|null |
||
1134 | * @throws \Psr\Container\NotFoundExceptionInterface |
||
1135 | * @throws \SilverStripe\ORM\ValidationException |
||
1136 | */ |
||
1137 | public function getPageTitle() |
||
1138 | { |
||
1139 | $page = $this->getPage(); |
||
1140 | |||
1141 | if ($page) { |
||
1142 | return $page->Title; |
||
1143 | } |
||
1144 | |||
1145 | return null; |
||
1146 | } |
||
1147 | |||
1148 | /** |
||
1149 | * @return boolean |
||
1150 | */ |
||
1151 | public function First() |
||
1152 | { |
||
1153 | return ($this->Parent()->Elements()->first()->ID === $this->ID); |
||
1154 | } |
||
1155 | |||
1156 | /** |
||
1157 | * @return boolean |
||
1158 | */ |
||
1159 | public function Last() |
||
1160 | { |
||
1161 | return ($this->Parent()->Elements()->last()->ID === $this->ID); |
||
1162 | } |
||
1163 | |||
1164 | /** |
||
1165 | * @return int |
||
1166 | */ |
||
1167 | public function TotalItems() |
||
1168 | { |
||
1169 | return $this->Parent()->Elements()->count(); |
||
1170 | } |
||
1171 | |||
1172 | /** |
||
1173 | * Returns the position of the current element. |
||
1174 | * |
||
1175 | * @return int |
||
1176 | */ |
||
1177 | public function Pos() |
||
1180 | } |
||
1181 | |||
1182 | /** |
||
1183 | * @return string |
||
1184 | */ |
||
1185 | public function EvenOdd() |
||
1186 | { |
||
1187 | $odd = (bool) ($this->Pos() % 2); |
||
1188 | |||
1189 | return ($odd) ? 'odd' : 'even'; |
||
1190 | } |
||
1191 | |||
1192 | /** |
||
1193 | * @return string |
||
1194 | */ |
||
1195 | public static function getGraphQLTypeName(): string |
||
1196 | { |
||
1197 | return class_exists(StaticSchema::class) |
||
1198 | ? StaticSchema::inst()->typeNameForDataObject(static::class) |
||
1200 | } |
||
1201 | } |
||
1202 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths