mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
7dfe145412
# Conflicts: # code/controllers/CMSFileAddController.php # code/controllers/CMSPageAddController.php # code/controllers/CMSPageHistoryController.php # code/controllers/CMSSiteTreeFilter.php # code/controllers/ContentController.php # code/controllers/LeftAndMainPageIconsExtension.php # code/controllers/SilverStripeNavigator.php # code/model/SiteTreeFileExtension.php # code/model/VirtualPage.php # composer.json # tests/model/ErrorPageTest.yml # tests/model/FileLinkTrackingTest.yml # tests/model/VirtualPageTest.yml
141 lines
3.5 KiB
PHP
141 lines
3.5 KiB
PHP
<?php
|
|
/**
|
|
* @package cms
|
|
* @subpackage model
|
|
*/
|
|
class SiteTreeFileExtension extends DataExtension {
|
|
|
|
private static $belongs_many_many = array(
|
|
'BackLinkTracking' => 'SiteTree'
|
|
);
|
|
|
|
public function updateCMSFields(FieldList $fields) {
|
|
$fields->insertAfter(
|
|
ReadonlyField::create(
|
|
'BackLinkCount',
|
|
_t('AssetTableField.BACKLINKCOUNT', 'Used on:'),
|
|
$this->BackLinkTracking()->Count() . ' ' . _t('AssetTableField.PAGES', 'page(s)')
|
|
)
|
|
->addExtraClass('cms-description-toggle')
|
|
->setDescription($this->BackLinkHTMLList()),
|
|
'LastEdited'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Generate an HTML list which provides links to where a file is used.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function BackLinkHTMLList() {
|
|
$html = '<em>' . _t(
|
|
'SiteTreeFileExtension.BACKLINK_LIST_DESCRIPTION',
|
|
'This list shows all pages where the file has been added through a WYSIWYG editor.'
|
|
) . '</em>';
|
|
$html .= '<ul>';
|
|
|
|
foreach ($this->BackLinkTracking() as $backLink) {
|
|
// Add the page link and CMS link
|
|
$html .= sprintf(
|
|
'<li><a href="%s" target="_blank">%s</a> – <a href="%s">%s</a></li>',
|
|
Convert::raw2att($backLink->Link()),
|
|
Convert::raw2xml($backLink->MenuTitle),
|
|
Convert::raw2att($backLink->CMSEditLink()),
|
|
_t('SiteTreeFileExtension.EDIT', 'Edit')
|
|
);
|
|
}
|
|
|
|
return $html .= '</ul>';
|
|
}
|
|
|
|
/**
|
|
* Extend through {@link updateBackLinkTracking()} in your own {@link Extension}.
|
|
*
|
|
* @param string|array $filter
|
|
* @param string $sort
|
|
* @param string $join
|
|
* @param string $limit
|
|
* @return ManyManyList
|
|
*/
|
|
public function BackLinkTracking() {
|
|
if(class_exists("Subsite")){
|
|
$rememberSubsiteFilter = Subsite::$disable_subsite_filter;
|
|
Subsite::disable_subsite_filter(true);
|
|
}
|
|
|
|
$links = $this->owner->getManyManyComponents('BackLinkTracking');
|
|
$this->owner->extend('updateBackLinkTracking', $links);
|
|
|
|
if(class_exists("Subsite")){
|
|
Subsite::disable_subsite_filter($rememberSubsiteFilter);
|
|
}
|
|
|
|
return $links;
|
|
}
|
|
|
|
/**
|
|
* @todo Unnecessary shortcut for AssetTableField, coupled with cms module.
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function BackLinkTrackingCount() {
|
|
$pages = $this->owner->BackLinkTracking();
|
|
if($pages) {
|
|
return $pages->Count();
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Updates link tracking.
|
|
*/
|
|
public function onAfterDelete() {
|
|
// We query the explicit ID list, because BackLinkTracking will get modified after the stage
|
|
// site does its thing
|
|
$brokenPageIDs = $this->owner->BackLinkTracking()->column("ID");
|
|
if($brokenPageIDs) {
|
|
$origStage = Versioned::current_stage();
|
|
|
|
// This will syncLinkTracking on draft
|
|
Versioned::reading_stage('Stage');
|
|
$brokenPages = DataObject::get('SiteTree')->byIDs($brokenPageIDs);
|
|
foreach($brokenPages as $brokenPage) {
|
|
$brokenPage->write();
|
|
}
|
|
|
|
// This will syncLinkTracking on published
|
|
Versioned::reading_stage('Live');
|
|
$liveBrokenPages = DataObject::get('SiteTree')->byIDs($brokenPageIDs);
|
|
foreach($liveBrokenPages as $brokenPage) {
|
|
$brokenPage->write();
|
|
}
|
|
|
|
Versioned::reading_stage($origStage);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Rewrite links to the $old file to now point to the $new file.
|
|
*
|
|
* @uses SiteTree->rewriteFileID()
|
|
*/
|
|
public function updateLinks() {
|
|
if(class_exists('Subsite')) {
|
|
Subsite::disable_subsite_filter(true);
|
|
}
|
|
|
|
$pages = $this->owner->BackLinkTracking();
|
|
if($pages) {
|
|
foreach($pages as $page) {
|
|
$page->rewriteFileLinks();
|
|
}
|
|
}
|
|
|
|
if(class_exists('Subsite')) {
|
|
Subsite::disable_subsite_filter(false);
|
|
}
|
|
}
|
|
|
|
}
|