mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
107 lines
3.2 KiB
PHP
107 lines
3.2 KiB
PHP
<?php
|
|
namespace SilverStripe\CMS\Controllers;
|
|
|
|
use SilverStripe\Control\Controller;
|
|
use SilverStripe\Core\Config\Config;
|
|
use SilverStripe\Core\Convert;
|
|
use SilverStripe\Dev\Deprecation;
|
|
use SilverStripe\ORM\CMSPreviewable;
|
|
use SilverStripe\ORM\DataObject;
|
|
use SilverStripe\Versioned\Versioned;
|
|
|
|
/**
|
|
* Class will be moved from `silverstripe/cms` to `silverstripe/admin`.
|
|
* @deprecated 4.13.0 Will be renamed SilverStripe\VersionedAdmin\Navigator\SilverStripeNavigatorItem_LiveLink
|
|
*/
|
|
class SilverStripeNavigatorItem_LiveLink extends SilverStripeNavigatorItem
|
|
{
|
|
public function __construct(CMSPreviewable $record)
|
|
{
|
|
Deprecation::withNoReplacement(function () {
|
|
Deprecation::notice(
|
|
'4.13.0',
|
|
'Will be renamed SilverStripe\VersionedAdmin\Navigator\SilverStripeNavigatorItem_LiveLink',
|
|
Deprecation::SCOPE_CLASS
|
|
);
|
|
});
|
|
parent::__construct($record);
|
|
}
|
|
|
|
/** @config */
|
|
private static $priority = 30;
|
|
|
|
public function getHTML()
|
|
{
|
|
$livePage = $this->getLivePage();
|
|
if (!$livePage) {
|
|
return null;
|
|
}
|
|
|
|
$linkClass = $this->isActive() ? 'class="current" ' : '';
|
|
$linkTitle = _t('SilverStripe\\CMS\\Controllers\\ContentController.PUBLISHEDSITE', 'Published Site');
|
|
$recordLink = Convert::raw2att(Controller::join_links($livePage->AbsoluteLink(), "?stage=Live"));
|
|
return "<a {$linkClass} href=\"$recordLink\">$linkTitle</a>";
|
|
}
|
|
|
|
public function getTitle()
|
|
{
|
|
return _t(
|
|
'SilverStripe\\CMS\\Controllers\\ContentController.PUBLISHED',
|
|
'Published',
|
|
'Used for the Switch between draft and published view mode. Needs to be a short label'
|
|
);
|
|
}
|
|
|
|
public function getMessage()
|
|
{
|
|
return "<div id=\"SilverStripeNavigatorMessage\" title=\"" . _t(
|
|
'SilverStripe\\CMS\\Controllers\\ContentController.NOTEWONTBESHOWN',
|
|
'Note: this message will not be shown to your visitors'
|
|
) . "\">" . _t(
|
|
'SilverStripe\\CMS\\Controllers\\ContentController.PUBLISHEDSITE',
|
|
'Published Site'
|
|
) . "</div>";
|
|
}
|
|
|
|
public function getLink()
|
|
{
|
|
$link = $this->getLivePage()->PreviewLink();
|
|
return $link ? Controller::join_links($link, '?stage=Live') : '';
|
|
}
|
|
|
|
public function canView($member = null)
|
|
{
|
|
/** @var Versioned|DataObject $record */
|
|
$record = $this->record;
|
|
return (
|
|
$record->hasExtension(Versioned::class)
|
|
&& $this->showLiveLink()
|
|
&& $record->hasStages()
|
|
&& $this->getLivePage()
|
|
&& $this->getLink()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function showLiveLink()
|
|
{
|
|
return (bool)Config::inst()->get(get_class($this->record), 'show_live_link');
|
|
}
|
|
|
|
public function isActive()
|
|
{
|
|
return (
|
|
(!Versioned::get_stage() || Versioned::get_stage() == 'Live')
|
|
&& !$this->isArchived()
|
|
);
|
|
}
|
|
|
|
protected function getLivePage()
|
|
{
|
|
$baseClass = $this->record->baseClass();
|
|
return Versioned::get_by_stage($baseClass, Versioned::LIVE)->byID($this->record->ID);
|
|
}
|
|
}
|