record = $record; } /** * @return SS_List of SilverStripeNavigatorItem */ function getItems() { $items = array(); $classes = ClassInfo::subclassesFor('SilverStripeNavigatorItem'); array_shift($classes); // Sort menu items according to priority $i = 0; foreach($classes as $class) { // Skip base class if($class == 'SilverStripeNavigatorItem') continue; $i++; $item = new $class($this->record); if(!$item->canView()) continue; // This funny litle formula ensures that the first item added with the same priority will be left-most. $priority = $item->getPriority() * 100 - 1; // Ensure that we can have duplicates with the same (default) priority while(isset($items[$priority])) $priority++; $items[$priority] = $item; } ksort($items); return new ArrayList($items); } /** * @return DataObject */ function getRecord() { return $this->record; } /** * @param DataObject $record * @return Array template data */ static function get_for_record($record) { $html = ''; $message = ''; $navigator = new SilverStripeNavigator($record); $items = $navigator->getItems(); foreach($items as $item) { $text = $item->getHTML(); if($text) $html .= $text; $newMessage = $item->getMessage(); if($newMessage) $message = $newMessage; } return array( 'items' => $html, 'message' => $message ); } } /** * Navigator items are links that appear in the $SilverStripeNavigator bar. * To add an item, extend this class - it will be automatically picked up. * When instanciating items manually, please ensure to call {@link canView()}. * * @package cms * @subpackage content */ class SilverStripeNavigatorItem extends ViewableData { /** * @param DataObject */ protected $record; /** * @param DataObject */ function __construct($record) { $this->record = $record; } /** * @return String HTML, mostly a link - but can be more complex as well. * For example, a "future state" item might show a date selector. */ function getHTML() {} /** * Optional link to a specific view of this record. * Not all items are simple links, please use {@link getHTML()} * to represent an item in markup unless you know what you're doing. * * @return String */ function getLink() {} /** * @return String */ function getMessage() {} /** * @return DataObject */ function getRecord() { return $this->record; } /** * @return Int */ function getPriority() { return $this->stat('priority'); } /** * As items might convey different record states like a "stage" or "live" table, * an item can be active (showing the record in this state). * * @return boolean */ function isActive() { return false; } /** * Filters items based on member permissions or other criteria, * such as if a state is generally available for the current record. * * @param Member * @return Boolean */ function canView($member = null) { return true; } } /** * @package cms * @subpackage content */ class SilverStripeNavigatorItem_CMSLink extends SilverStripeNavigatorItem { static $priority = 10; function getHTML() { return sprintf( '%s', $this->record->CMSEditLink(), _t('ContentController.CMS', 'CMS') ); } function getLink() { return $this->record->CMSEditLink(); } function isActive() { return (Controller::curr() instanceof CMSMain); } function canView() { // Don't show in CMS return !(Controller::curr() instanceof CMSMain); } } /** * @package cms * @subpackage content */ class SilverStripeNavigatorItem_StageLink extends SilverStripeNavigatorItem { static $priority = 20; function getHTML() { $draftPage = $this->getDraftPage(); if($draftPage) { $this->recordLink = Controller::join_links($draftPage->AbsoluteLink(), "?stage=Stage"); return "recordLink\">". _t('ContentController.DRAFTSITE', 'Draft Site') .""; } } function getMessage() { return "
". _t('ContentController.DRAFTSITE', 'Draft Site') ."
"; } function getLink() { return Controller::join_links($this->record->AbsoluteLink(), '?stage=Stage'); } function canView() { return ($this->record->hasExtension('Versioned') && $this->getDraftPage()); } function isActive() { return ( Versioned::current_stage() == 'Stage' && !(ClassInfo::exists('SiteTreeFutureState') && SiteTreeFutureState::get_future_datetime()) ); } protected function getDraftPage() { $baseTable = ClassInfo::baseDataClass($this->record->class); return Versioned::get_one_by_stage( $baseTable, 'Stage', sprintf('"%s"."ID" = %d', $baseTable, $this->record->ID) ); } } /** * @package cms * @subpackage content */ class SilverStripeNavigatorItem_LiveLink extends SilverStripeNavigatorItem { static $priority = 30; function getHTML() { $livePage = $this->getLivePage(); if($livePage) { $this->recordLink = Controller::join_links($livePage->AbsoluteLink(), "?stage=Live"); return "recordLink\">". _t('ContentController.PUBLISHEDSITE', 'Published Site') .""; } } function getMessage() { return "
". _t('ContentController.PUBLISHEDSITE', 'Published Site') ."
"; } function getLink() { return Controller::join_links($this->record->AbsoluteLink(), '?stage=Live'); } function canView() { return ($this->record->hasExtension('Versioned') && $this->getLivePage()); } function isActive() { return (!Versioned::current_stage() || Versioned::current_stage() == 'Live'); } protected function getLivePage() { $baseTable = ClassInfo::baseDataClass($this->record->class); return Versioned::get_one_by_stage( $baseTable, 'Live', sprintf('"%s"."ID" = %d', $baseTable, $this->record->ID) ); } } /** * @package cms * @subpackage content */ class SilverStripeNavigatorItem_ArchiveLink extends SilverStripeNavigatorItem { static $priority = 40; function getHTML() { $this->recordLink = $this->record->AbsoluteLink(); return "recordLink?archiveDate={$this->record->LastEdited}\" target=\"_blank\">". _t('ContentController.ARCHIVEDSITE', 'Archived Site') .""; } function getMessage() { $dateObj = Object::create('Datetime'); $dateObj->setValue($date); return "
". _t('ContentController.ARCHIVEDSITEFROM', 'Archived site from') ."
" . $dateObj->Nice() . "
"; } function getLink() { return $this->record->AbsoluteLink() . '?archiveDate=' . $date; } function canView() { return ($this->record->hasExtension('Versioned') && $this->isArchived()); } function isActive() { return (Versioned::current_archived_date()); } /** * Counts as "archived" if the current record is a different version from both live and draft. * * @return boolean */ function isArchived() { if(!$this->record->hasExtension('Versioned')) return false; $baseTable = ClassInfo::baseDataClass($this->record->class); $currentDraft = Versioned::get_one_by_stage( $baseTable, 'Stage', sprintf('"%s"."ID" = %d', $baseTable, $this->record->ID) ); $currentLive = Versioned::get_one_by_stage( $baseTable, 'Live', sprintf('"%s"."ID" = %d', $baseTable, $this->record->ID) ); return ( (!$currentDraft || ($currentDraft && $this->record->Version != $currentDraft->Version)) && (!$currentLive || ($currentLive && $this->record->Version != $currentLive->Version)) ); } } ?>