| Total Complexity | 92 |
| Total Lines | 809 |
| Duplicated Lines | 0 % |
| Changes | 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 |
||
| 53 | class BaseElement extends DataObject implements CMSPreviewable |
||
| 54 | { |
||
| 55 | /** |
||
| 56 | * Override this on your custom elements to specify a CSS icon class |
||
| 57 | * |
||
| 58 | * @var string |
||
| 59 | */ |
||
| 60 | private static $icon = 'font-icon-block-layout'; |
||
|
|
|||
| 61 | |||
| 62 | /** |
||
| 63 | * Describe the purpose of this element |
||
| 64 | * |
||
| 65 | * @config |
||
| 66 | * @var string |
||
| 67 | */ |
||
| 68 | private static $description = 'Base element class'; |
||
| 69 | |||
| 70 | private static $db = [ |
||
| 71 | 'Title' => 'Varchar(255)', |
||
| 72 | 'ShowTitle' => 'Boolean', |
||
| 73 | 'Sort' => 'Int', |
||
| 74 | 'ExtraClass' => 'Varchar(255)', |
||
| 75 | 'Style' => 'Varchar(255)' |
||
| 76 | ]; |
||
| 77 | |||
| 78 | private static $has_one = [ |
||
| 79 | 'Parent' => ElementalArea::class |
||
| 80 | ]; |
||
| 81 | |||
| 82 | private static $extensions = [ |
||
| 83 | Versioned::class |
||
| 84 | ]; |
||
| 85 | |||
| 86 | private static $versioned_gridfield_extensions = true; |
||
| 87 | |||
| 88 | private static $table_name = 'Element'; |
||
| 89 | |||
| 90 | /** |
||
| 91 | * @var string |
||
| 92 | */ |
||
| 93 | private static $controller_class = ElementController::class; |
||
| 94 | |||
| 95 | /** |
||
| 96 | * @var string |
||
| 97 | */ |
||
| 98 | private static $controller_template = 'ElementHolder'; |
||
| 99 | |||
| 100 | /** |
||
| 101 | * @var ElementController |
||
| 102 | */ |
||
| 103 | protected $controller; |
||
| 104 | |||
| 105 | private static $default_sort = 'Sort'; |
||
| 106 | |||
| 107 | private static $singular_name = 'block'; |
||
| 108 | |||
| 109 | private static $plural_name = 'blocks'; |
||
| 110 | |||
| 111 | private static $summary_fields = [ |
||
| 112 | 'EditorPreview' => 'Summary' |
||
| 113 | ]; |
||
| 114 | |||
| 115 | /** |
||
| 116 | * @config |
||
| 117 | * @var array |
||
| 118 | */ |
||
| 119 | private static $styles = []; |
||
| 120 | |||
| 121 | private static $searchable_fields = [ |
||
| 122 | 'ID' => [ |
||
| 123 | 'field' => NumericField::class, |
||
| 124 | ], |
||
| 125 | 'Title', |
||
| 126 | 'LastEdited' |
||
| 127 | ]; |
||
| 128 | |||
| 129 | /** |
||
| 130 | * Enable for backwards compatibility |
||
| 131 | * |
||
| 132 | * @var boolean |
||
| 133 | */ |
||
| 134 | private static $disable_pretty_anchor_name = false; |
||
| 135 | |||
| 136 | /** |
||
| 137 | * Store used anchor names, this is to avoid title clashes |
||
| 138 | * when calling 'getAnchor' |
||
| 139 | * |
||
| 140 | * @var array |
||
| 141 | */ |
||
| 142 | protected static $_used_anchors = []; |
||
| 143 | |||
| 144 | /** |
||
| 145 | * For caching 'getAnchor' |
||
| 146 | * |
||
| 147 | * @var string |
||
| 148 | */ |
||
| 149 | protected $_anchor = null; |
||
| 150 | |||
| 151 | /** |
||
| 152 | * Basic permissions, defaults to page perms where possible. |
||
| 153 | * |
||
| 154 | * @param Member $member |
||
| 155 | * @return boolean |
||
| 156 | */ |
||
| 157 | public function canView($member = null) |
||
| 158 | { |
||
| 159 | if ($this->hasMethod('getPage')) { |
||
| 160 | if ($page = $this->getPage()) { |
||
| 161 | return $page->canView($member); |
||
| 162 | } |
||
| 163 | } |
||
| 164 | |||
| 165 | return (Permission::check('CMS_ACCESS', 'any', $member)) ? true : null; |
||
| 166 | } |
||
| 167 | |||
| 168 | /** |
||
| 169 | * Basic permissions, defaults to page perms where possible. |
||
| 170 | * |
||
| 171 | * @param Member $member |
||
| 172 | * |
||
| 173 | * @return boolean |
||
| 174 | */ |
||
| 175 | public function canEdit($member = null) |
||
| 176 | { |
||
| 177 | if ($this->hasMethod('getPage')) { |
||
| 178 | if ($page = $this->getPage()) { |
||
| 179 | return $page->canEdit($member); |
||
| 180 | } |
||
| 181 | } |
||
| 182 | |||
| 183 | return (Permission::check('CMS_ACCESS', 'any', $member)) ? true : null; |
||
| 184 | } |
||
| 185 | |||
| 186 | /** |
||
| 187 | * Basic permissions, defaults to page perms where possible. |
||
| 188 | * |
||
| 189 | * Uses archive not delete so that current stage is respected i.e if a |
||
| 190 | * element is not published, then it can be deleted by someone who doesn't |
||
| 191 | * have publishing permissions. |
||
| 192 | * |
||
| 193 | * @param Member $member |
||
| 194 | * |
||
| 195 | * @return boolean |
||
| 196 | */ |
||
| 197 | public function canDelete($member = null) |
||
| 198 | { |
||
| 199 | if ($this->hasMethod('getPage')) { |
||
| 200 | if ($page = $this->getPage()) { |
||
| 201 | return $page->canArchive($member); |
||
| 202 | } |
||
| 203 | } |
||
| 204 | |||
| 205 | return (Permission::check('CMS_ACCESS', 'any', $member)) ? true : null; |
||
| 206 | } |
||
| 207 | |||
| 208 | /** |
||
| 209 | * Basic permissions, defaults to page perms where possible. |
||
| 210 | * |
||
| 211 | * @param Member $member |
||
| 212 | * @param array $context |
||
| 213 | * |
||
| 214 | * @return boolean |
||
| 215 | */ |
||
| 216 | public function canCreate($member = null, $context = array()) |
||
| 217 | { |
||
| 218 | return (Permission::check('CMS_ACCESS', 'any', $member)) ? true : null; |
||
| 219 | } |
||
| 220 | |||
| 221 | /** |
||
| 222 | * @throws \SilverStripe\ORM\ValidationException |
||
| 223 | */ |
||
| 224 | public function onBeforeWrite() |
||
| 225 | { |
||
| 226 | parent::onBeforeWrite(); |
||
| 227 | |||
| 228 | if ($areaID = $this->ParentID) { |
||
| 229 | if ($elementalArea = ElementalArea::get()->byID($areaID)) { |
||
| 230 | $elementalArea->write(); |
||
| 231 | } |
||
| 232 | } |
||
| 233 | |||
| 234 | if (!$this->Sort) { |
||
| 235 | $parentID = ($this->ParentID) ? $this->ParentID : 0; |
||
| 236 | |||
| 237 | $this->Sort = static::get()->max('Sort') + 1; |
||
| 238 | } |
||
| 239 | } |
||
| 240 | |||
| 241 | public function getCMSFields() |
||
| 242 | { |
||
| 243 | $this->beforeUpdateCMSFields(function (FieldList $fields) { |
||
| 244 | // Remove relationship fields |
||
| 245 | $fields->removeByName('ParentID'); |
||
| 246 | $fields->removeByName('Sort'); |
||
| 247 | |||
| 248 | $fields->addFieldToTab( |
||
| 249 | 'Root.Settings', |
||
| 250 | TextField::create('ExtraClass', _t(__CLASS__ . '.ExtraCssClassesLabel', 'Custom CSS classes')) |
||
| 251 | ->setAttribute( |
||
| 252 | 'placeholder', |
||
| 253 | _t(__CLASS__ . '.ExtraCssClassesPlaceholder', 'my_class another_class') |
||
| 254 | ) |
||
| 255 | ); |
||
| 256 | |||
| 257 | // Add a combined field for "Title" and "Displayed" checkbox in a Bootstrap input group |
||
| 258 | $fields->removeByName('ShowTitle'); |
||
| 259 | $fields->replaceField( |
||
| 260 | 'Title', |
||
| 261 | TextCheckboxGroupField::create( |
||
| 262 | TextField::create('Title', _t(__CLASS__ . '.TitleLabel', 'Title (displayed if checked)')), |
||
| 263 | CheckboxField::create('ShowTitle', _t(__CLASS__ . '.ShowTitleLabel', 'Displayed')) |
||
| 264 | ) |
||
| 265 | ->setName('TitleAndDisplayed') |
||
| 266 | ); |
||
| 267 | |||
| 268 | // Rename the "Main" tab |
||
| 269 | $fields->fieldByName('Root.Main') |
||
| 270 | ->setTitle(_t(__CLASS__ . '.MainTabLabel', 'Content')); |
||
| 271 | |||
| 272 | $fields->addFieldsToTab('Root.Main', [ |
||
| 273 | HiddenField::create('AbsoluteLink', false, Director::absoluteURL($this->PreviewLink())), |
||
| 274 | HiddenField::create('LiveLink', false, Director::absoluteURL($this->Link())), |
||
| 275 | HiddenField::create('StageLink', false, Director::absoluteURL($this->PreviewLink())), |
||
| 276 | ]); |
||
| 277 | |||
| 278 | $styles = $this->config()->get('styles'); |
||
| 279 | |||
| 280 | if ($styles && count($styles) > 0) { |
||
| 281 | $styleDropdown = DropdownField::create('Style', _t(__CLASS__.'.STYLE', 'Style variation'), $styles); |
||
| 282 | |||
| 283 | $fields->insertBefore($styleDropdown, 'ExtraClass'); |
||
| 284 | |||
| 285 | $styleDropdown->setEmptyString(_t(__CLASS__.'.CUSTOM_STYLES', 'Select a style..')); |
||
| 286 | } else { |
||
| 287 | $fields->removeByName('Style'); |
||
| 288 | } |
||
| 289 | |||
| 290 | $history = $this->getHistoryFields(); |
||
| 291 | |||
| 292 | if ($history) { |
||
| 293 | $fields->addFieldsToTab('Root.History', $history); |
||
| 294 | } |
||
| 295 | }); |
||
| 296 | |||
| 297 | return parent::getCMSFields(); |
||
| 298 | } |
||
| 299 | |||
| 300 | /** |
||
| 301 | * Returns the history fields for this element. |
||
| 302 | * |
||
| 303 | * @param bool $checkLatestVersion Whether to check if this is the latest version. Prevents recursion, but can be |
||
| 304 | * overridden to get the history GridField if required. |
||
| 305 | * @return FieldList |
||
| 306 | */ |
||
| 307 | public function getHistoryFields($checkLatestVersion = true) |
||
| 308 | { |
||
| 309 | if ($checkLatestVersion && !$this->isLatestVersion()) { |
||
| 310 | // if viewing the history of the of page then don't show the history |
||
| 311 | // fields as then we have recursion. |
||
| 312 | return null; |
||
| 313 | } |
||
| 314 | |||
| 315 | Requirements::javascript('dnadesign/silverstripe-elemental:client/dist/js/bundle.js'); |
||
| 316 | |||
| 317 | $config = GridFieldConfig_RecordViewer::create(); |
||
| 318 | $config->removeComponentsByType(GridFieldPageCount::class); |
||
| 319 | $config->removeComponentsByType(GridFieldToolbarHeader::class); |
||
| 320 | // Replace the sortable ID column with a static header component |
||
| 321 | $config->removeComponentsByType(GridFieldSortableHeader::class); |
||
| 322 | $config->addComponent(new GridFieldTitleHeader); |
||
| 323 | |||
| 324 | $config |
||
| 325 | ->getComponentByType(GridFieldDetailForm::class) |
||
| 326 | ->setItemRequestClass(HistoricalVersionedGridFieldItemRequest::class); |
||
| 327 | |||
| 328 | $config->getComponentByType(GridFieldDataColumns::class) |
||
| 329 | ->setDisplayFields([ |
||
| 330 | 'Version' => '#', |
||
| 331 | 'RecordStatus' => _t(__CLASS__ . '.Record', 'Record'), |
||
| 332 | 'getAuthor.Name' => _t(__CLASS__ . '.Author', 'Author') |
||
| 333 | ]) |
||
| 334 | ->setFieldFormatting([ |
||
| 335 | 'RecordStatus' => '$VersionedStateNice <span class=\"element-history__date--small\">on $LastEditedNice</span>', |
||
| 336 | ]); |
||
| 337 | |||
| 338 | $config->removeComponentsByType(GridFieldViewButton::class); |
||
| 339 | $config->addComponent(new ElementalGridFieldHistoryButton()); |
||
| 340 | |||
| 341 | $history = Versioned::get_all_versions(__CLASS__, $this->ID) |
||
| 342 | ->sort('Version', 'DESC'); |
||
| 343 | |||
| 344 | return FieldList::create( |
||
| 345 | GridField::create('History', '', $history, $config) |
||
| 346 | ->addExtraClass('elemental-block__history') |
||
| 347 | ); |
||
| 348 | } |
||
| 349 | |||
| 350 | /** |
||
| 351 | * Get the type of the current block, for use in GridField summaries, block |
||
| 352 | * type dropdowns etc. Examples are "Content", "File", "Media", etc. |
||
| 353 | * |
||
| 354 | * @return string |
||
| 355 | */ |
||
| 356 | public function getType() |
||
| 357 | { |
||
| 358 | return _t(__CLASS__ . '.BlockType', 'Block'); |
||
| 359 | } |
||
| 360 | |||
| 361 | /** |
||
| 362 | * @param ElementController $controller |
||
| 363 | * |
||
| 364 | * @return $this |
||
| 365 | */ |
||
| 366 | public function setController($controller) |
||
| 367 | { |
||
| 368 | $this->controller = $controller; |
||
| 369 | |||
| 370 | return $this; |
||
| 371 | } |
||
| 372 | |||
| 373 | /** |
||
| 374 | * @throws Exception If the specified controller class doesn't exist |
||
| 375 | * |
||
| 376 | * @return ElementController |
||
| 377 | */ |
||
| 378 | public function getController() |
||
| 379 | { |
||
| 380 | if ($this->controller) { |
||
| 381 | return $this->controller; |
||
| 382 | } |
||
| 383 | |||
| 384 | $controllerClass = self::config()->controller_class; |
||
| 385 | |||
| 386 | if (!class_exists($controllerClass)) { |
||
| 387 | throw new Exception('Could not find controller class ' . $controllerClass . ' as defined in ' . static::class); |
||
| 388 | } |
||
| 389 | |||
| 390 | $this->controller = Injector::inst()->create($controllerClass, $this); |
||
| 391 | $this->controller->doInit(); |
||
| 392 | |||
| 393 | return $this->controller; |
||
| 394 | } |
||
| 395 | |||
| 396 | /** |
||
| 397 | * @return Controller |
||
| 398 | */ |
||
| 399 | public function Top() |
||
| 400 | { |
||
| 401 | return (Controller::has_curr()) ? Controller::curr() : null; |
||
| 402 | } |
||
| 403 | |||
| 404 | /** |
||
| 405 | * Default way to render element in templates. Note that all blocks should |
||
| 406 | * be rendered through their {@link ElementController} class as this |
||
| 407 | * contains the holder styles. |
||
| 408 | * |
||
| 409 | * @return string|null HTML |
||
| 410 | */ |
||
| 411 | public function forTemplate($holder = true) |
||
| 412 | { |
||
| 413 | $templates = $this->getRenderTemplates(); |
||
| 414 | |||
| 415 | if ($templates) { |
||
| 416 | return $this->renderWith($templates); |
||
| 417 | } |
||
| 418 | |||
| 419 | return null; |
||
| 420 | } |
||
| 421 | |||
| 422 | /** |
||
| 423 | * @param string $suffix |
||
| 424 | * |
||
| 425 | * @return array |
||
| 426 | */ |
||
| 427 | public function getRenderTemplates($suffix = '') |
||
| 428 | { |
||
| 429 | $classes = ClassInfo::ancestry($this->ClassName); |
||
| 430 | $classes[static::class] = static::class; |
||
| 431 | $classes = array_reverse($classes); |
||
| 432 | $templates = array(); |
||
| 433 | |||
| 434 | foreach ($classes as $key => $value) { |
||
| 435 | if ($value == BaseElement::class) { |
||
| 436 | continue; |
||
| 437 | } |
||
| 438 | |||
| 439 | if ($value == DataObject::class) { |
||
| 440 | break; |
||
| 441 | } |
||
| 442 | |||
| 443 | $templates[] = $value . $suffix; |
||
| 444 | } |
||
| 445 | |||
| 446 | return $templates; |
||
| 447 | } |
||
| 448 | |||
| 449 | /** |
||
| 450 | * Strip all namespaces from class namespace. |
||
| 451 | * |
||
| 452 | * @param string $classname e.g. "\Fully\Namespaced\Class" |
||
| 453 | * |
||
| 454 | * @return string following the param example, "Class" |
||
| 455 | */ |
||
| 456 | protected function stripNamespacing($classname) |
||
| 457 | { |
||
| 458 | $classParts = explode('\\', $classname); |
||
| 459 | return array_pop($classParts); |
||
| 460 | } |
||
| 461 | |||
| 462 | /** |
||
| 463 | * @return string |
||
| 464 | */ |
||
| 465 | public function getSimpleClassName() |
||
| 466 | { |
||
| 467 | return strtolower($this->sanitiseClassName($this->ClassName, '__')); |
||
| 468 | } |
||
| 469 | |||
| 470 | /** |
||
| 471 | * @return null|DataObject |
||
| 472 | * @throws \Psr\Container\NotFoundExceptionInterface |
||
| 473 | * @throws \SilverStripe\ORM\ValidationException |
||
| 474 | */ |
||
| 475 | public function getPage() |
||
| 476 | { |
||
| 477 | $area = $this->Parent(); |
||
| 478 | |||
| 479 | if ($area instanceof ElementalArea && $area->exists()) { |
||
| 480 | return $area->getOwnerPage(); |
||
| 481 | } |
||
| 482 | |||
| 483 | return null; |
||
| 484 | } |
||
| 485 | |||
| 486 | /** |
||
| 487 | * Get a unique anchor name |
||
| 488 | * |
||
| 489 | * @return string |
||
| 490 | */ |
||
| 491 | public function getAnchor() |
||
| 524 | } |
||
| 525 | |||
| 526 | /** |
||
| 527 | * @param string|null $action |
||
| 528 | * @return string|null |
||
| 529 | * @throws \Psr\Container\NotFoundExceptionInterface |
||
| 530 | * @throws \SilverStripe\ORM\ValidationException |
||
| 531 | */ |
||
| 532 | public function AbsoluteLink($action = null) |
||
| 533 | { |
||
| 534 | if ($page = $this->getPage()) { |
||
| 535 | $link = $page->AbsoluteLink($action) . '#' . $this->getAnchor(); |
||
| 536 | |||
| 537 | return $link; |
||
| 538 | } |
||
| 539 | |||
| 540 | return null; |
||
| 541 | } |
||
| 542 | |||
| 543 | /** |
||
| 544 | * @param string|null $action |
||
| 545 | * @return string |
||
| 546 | * @throws \Psr\Container\NotFoundExceptionInterface |
||
| 547 | * @throws \SilverStripe\ORM\ValidationException |
||
| 548 | */ |
||
| 549 | public function Link($action = null) |
||
| 550 | { |
||
| 551 | if ($page = $this->getPage()) { |
||
| 552 | $link = $page->Link($action) . '#' . $this->getAnchor(); |
||
| 553 | |||
| 554 | $this->extend('updateLink', $link); |
||
| 555 | |||
| 556 | return $link; |
||
| 557 | } |
||
| 558 | |||
| 559 | return null; |
||
| 560 | } |
||
| 561 | |||
| 562 | /** |
||
| 563 | * @param string|null $action |
||
| 564 | * @return string |
||
| 565 | * @throws \Psr\Container\NotFoundExceptionInterface |
||
| 566 | * @throws \SilverStripe\ORM\ValidationException |
||
| 567 | */ |
||
| 568 | public function PreviewLink($action = null) |
||
| 569 | { |
||
| 570 | $action = $action . '?ElementalPreview=' . mt_rand(); |
||
| 571 | $link = $this->Link($action); |
||
| 572 | $this->extend('updatePreviewLink', $link); |
||
| 573 | |||
| 574 | return $link; |
||
| 575 | } |
||
| 576 | |||
| 577 | /** |
||
| 578 | * @return boolean |
||
| 579 | */ |
||
| 580 | public function isCMSPreview() |
||
| 581 | { |
||
| 582 | if (Controller::has_curr()) { |
||
| 583 | $controller = Controller::curr(); |
||
| 584 | |||
| 585 | if ($controller->getRequest()->requestVar('CMSPreview')) { |
||
| 586 | return true; |
||
| 587 | } |
||
| 588 | } |
||
| 589 | |||
| 590 | return false; |
||
| 591 | } |
||
| 592 | |||
| 593 | /** |
||
| 594 | * @return null|string |
||
| 595 | * @throws \Psr\Container\NotFoundExceptionInterface |
||
| 596 | * @throws \SilverStripe\ORM\ValidationException |
||
| 597 | */ |
||
| 598 | public function CMSEditLink() |
||
| 599 | { |
||
| 600 | $relationName = $this->getAreaRelationName(); |
||
| 601 | $page = $this->getPage(true); |
||
| 602 | |||
| 603 | if (!$page) { |
||
| 604 | return null; |
||
| 605 | } |
||
| 606 | |||
| 607 | $link = Controller::join_links( |
||
| 608 | singleton(CMSPageEditController::class)->Link('EditForm'), |
||
| 609 | $page->ID, |
||
| 610 | 'field/' . $relationName . '/item/', |
||
| 611 | $this->ID |
||
| 612 | ); |
||
| 613 | |||
| 614 | $link = Controller::join_links( |
||
| 615 | $link, |
||
| 616 | 'edit' |
||
| 617 | ); |
||
| 618 | |||
| 619 | $this->extend('updateCMSEditLink', $link); |
||
| 620 | |||
| 621 | return $link; |
||
| 622 | } |
||
| 623 | |||
| 624 | /** |
||
| 625 | * Retrieve a elemental area relation for creating cms links |
||
| 626 | * |
||
| 627 | * @return int|string The name of a valid elemental area relation |
||
| 628 | * @throws \Psr\Container\NotFoundExceptionInterface |
||
| 629 | * @throws \SilverStripe\ORM\ValidationException |
||
| 630 | */ |
||
| 631 | public function getAreaRelationName() |
||
| 632 | { |
||
| 633 | $page = $this->getPage(); |
||
| 634 | |||
| 635 | if ($page) { |
||
| 636 | $has_one = $page->config()->get('has_one'); |
||
| 637 | $area = $this->Parent(); |
||
| 638 | |||
| 639 | foreach ($has_one as $relationName => $relationClass) { |
||
| 640 | if ($relationClass === $area->ClassName) { |
||
| 641 | return $relationName; |
||
| 642 | } |
||
| 643 | } |
||
| 644 | } |
||
| 645 | |||
| 646 | return 'ElementalArea'; |
||
| 647 | } |
||
| 648 | |||
| 649 | /** |
||
| 650 | * Sanitise a model class' name for inclusion in a link. |
||
| 651 | * |
||
| 652 | * @return string |
||
| 653 | */ |
||
| 654 | public function sanitiseClassName($class, $delimiter = '-') |
||
| 655 | { |
||
| 656 | return str_replace('\\', $delimiter, $class); |
||
| 657 | } |
||
| 658 | |||
| 659 | public function unsanitiseClassName($class, $delimiter = '-') |
||
| 660 | { |
||
| 661 | return str_replace($delimiter, '\\', $class); |
||
| 662 | } |
||
| 663 | |||
| 664 | /** |
||
| 665 | * @return null|string |
||
| 666 | * @throws \Psr\Container\NotFoundExceptionInterface |
||
| 667 | * @throws \SilverStripe\ORM\ValidationException |
||
| 668 | */ |
||
| 669 | public function getEditLink() |
||
| 670 | { |
||
| 671 | return $this->CMSEditLink(); |
||
| 672 | } |
||
| 673 | |||
| 674 | /** |
||
| 675 | * @return DBField|null |
||
| 676 | * @throws \Psr\Container\NotFoundExceptionInterface |
||
| 677 | * @throws \SilverStripe\ORM\ValidationException |
||
| 678 | */ |
||
| 679 | public function PageCMSEditLink() |
||
| 680 | { |
||
| 681 | if ($page = $this->getPage()) { |
||
| 682 | return DBField::create_field('HTMLText', sprintf( |
||
| 683 | '<a href="%s">%s</a>', |
||
| 684 | $page->CMSEditLink(), |
||
| 685 | $page->Title |
||
| 686 | )); |
||
| 687 | } |
||
| 688 | |||
| 689 | return null; |
||
| 690 | } |
||
| 691 | |||
| 692 | /** |
||
| 693 | * @return string |
||
| 694 | */ |
||
| 695 | public function getMimeType() |
||
| 696 | { |
||
| 697 | return 'text/html'; |
||
| 698 | } |
||
| 699 | |||
| 700 | /** |
||
| 701 | * This can be overridden on child elements to create a summary for display |
||
| 702 | * in GridFields. |
||
| 703 | * |
||
| 704 | * @return string |
||
| 705 | */ |
||
| 706 | public function getSummary() |
||
| 707 | { |
||
| 708 | return ''; |
||
| 709 | } |
||
| 710 | |||
| 711 | |||
| 712 | /** |
||
| 713 | * Generate markup for element type icons suitable for use in GridFields. |
||
| 714 | * |
||
| 715 | * @return null|DBHTMLText |
||
| 716 | */ |
||
| 717 | public function getIcon() |
||
| 718 | { |
||
| 719 | $data = ArrayData::create([]); |
||
| 720 | |||
| 721 | $iconClass = $this->config()->get('icon'); |
||
| 722 | if ($iconClass) { |
||
| 723 | $data->IconClass = $iconClass; |
||
| 724 | |||
| 725 | // Add versioned states (rendered as a circle over the icon) |
||
| 726 | if ($this->hasExtension(Versioned::class)) { |
||
| 727 | $data->IsVersioned = true; |
||
| 728 | if ($this->isOnDraftOnly()) { |
||
| 729 | $data->VersionState = 'draft'; |
||
| 730 | $data->VersionStateTitle = _t( |
||
| 731 | 'SilverStripe\\Versioned\\VersionedGridFieldState\\VersionedGridFieldState.ADDEDTODRAFTHELP', |
||
| 732 | 'Item has not been published yet' |
||
| 733 | ); |
||
| 734 | } elseif ($this->isModifiedOnDraft()) { |
||
| 735 | $data->VersionState = 'modified'; |
||
| 736 | $data->VersionStateTitle = $data->VersionStateTitle = _t( |
||
| 737 | 'SilverStripe\\Versioned\\VersionedGridFieldState\\VersionedGridFieldState.MODIFIEDONDRAFTHELP', |
||
| 738 | 'Item has unpublished changes' |
||
| 739 | ); |
||
| 740 | } |
||
| 741 | } |
||
| 742 | |||
| 743 | return $data->renderWith(__CLASS__ . '/PreviewIcon'); |
||
| 744 | } |
||
| 745 | |||
| 746 | return null; |
||
| 747 | } |
||
| 748 | |||
| 749 | /** |
||
| 750 | * Get a description for this content element, if available |
||
| 751 | * |
||
| 752 | * @return string |
||
| 753 | */ |
||
| 754 | public function getDescription() |
||
| 755 | { |
||
| 756 | $description = $this->config()->uninherited('description'); |
||
| 757 | if ($description) { |
||
| 758 | return _t(__CLASS__ . '.Description', $description); |
||
| 759 | } |
||
| 760 | return ''; |
||
| 761 | } |
||
| 762 | |||
| 763 | /** |
||
| 764 | * Generate markup for element type, with description suitable for use in |
||
| 765 | * GridFields. |
||
| 766 | * |
||
| 767 | * @return DBField |
||
| 768 | */ |
||
| 769 | public function getTypeNice() |
||
| 770 | { |
||
| 771 | $description = $this->getDescription(); |
||
| 772 | $desc = ($description) ? ' <span class="element__note"> — ' . $description . '</span>' : ''; |
||
| 773 | |||
| 774 | return DBField::create_field( |
||
| 775 | 'HTMLVarchar', |
||
| 776 | $this->getType() . $desc |
||
| 777 | ); |
||
| 778 | } |
||
| 779 | |||
| 780 | /** |
||
| 781 | * @return \SilverStripe\ORM\FieldType\DBHTMLText |
||
| 782 | */ |
||
| 783 | public function getEditorPreview() |
||
| 784 | { |
||
| 785 | $templates = $this->getRenderTemplates('_EditorPreview'); |
||
| 786 | $templates[] = BaseElement::class . '_EditorPreview'; |
||
| 787 | |||
| 788 | return $this->renderWith($templates); |
||
| 789 | } |
||
| 790 | |||
| 791 | /** |
||
| 792 | * @return Member |
||
| 793 | */ |
||
| 794 | public function getAuthor() |
||
| 795 | { |
||
| 796 | if ($this->AuthorID) { |
||
| 797 | return Member::get()->byId($this->AuthorID); |
||
| 798 | } |
||
| 799 | |||
| 800 | return null; |
||
| 801 | } |
||
| 802 | |||
| 803 | /** |
||
| 804 | * Get a user defined style variant for this element, if available |
||
| 805 | * |
||
| 806 | * @return string |
||
| 807 | */ |
||
| 808 | public function getStyleVariant() |
||
| 809 | { |
||
| 810 | $style = $this->Style; |
||
| 811 | $styles = $this->config()->get('styles'); |
||
| 812 | |||
| 813 | if (isset($styles[$style])) { |
||
| 814 | $style = strtolower($style); |
||
| 815 | } else { |
||
| 816 | $style = ''; |
||
| 817 | } |
||
| 818 | |||
| 819 | $this->extend('updateStyleVariant', $style); |
||
| 820 | |||
| 821 | return $style; |
||
| 822 | } |
||
| 823 | |||
| 824 | /** |
||
| 825 | * @return mixed|null |
||
| 826 | * @throws \Psr\Container\NotFoundExceptionInterface |
||
| 827 | * @throws \SilverStripe\ORM\ValidationException |
||
| 828 | */ |
||
| 829 | public function getPageTitle() |
||
| 830 | { |
||
| 831 | $page = $this->getPage(); |
||
| 832 | |||
| 833 | if ($page) { |
||
| 834 | return $page->Title; |
||
| 835 | } |
||
| 836 | |||
| 837 | return null; |
||
| 838 | } |
||
| 839 | |||
| 840 | /** |
||
| 841 | * Get a "nice" label for use in the block history GridField |
||
| 842 | * |
||
| 843 | * @return string |
||
| 844 | */ |
||
| 845 | public function getVersionedStateNice() |
||
| 846 | { |
||
| 847 | if ($this->WasPublished) { |
||
| 848 | return _t(__CLASS__ . '.Published', 'Published'); |
||
| 849 | } |
||
| 850 | |||
| 851 | return _t(__CLASS__ . '.Modified', 'Modified'); |
||
| 852 | } |
||
| 853 | |||
| 854 | /** |
||
| 855 | * Return a formatted date for use in the block history GridField |
||
| 856 | * |
||
| 857 | * @return string |
||
| 858 | */ |
||
| 859 | public function getLastEditedNice() |
||
| 862 | } |
||
| 863 | } |
||
| 864 |