mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
e79dd5558b
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@66506 467b73ca-7a2a-4603-9d3b-597d59a354a9
29 lines
800 B
PHP
29 lines
800 B
PHP
<?php
|
|
/**
|
|
* @package cms
|
|
* @subpackage tasks
|
|
*/
|
|
class SiteTreeMaintenanceTask extends Controller {
|
|
static $allowed_actions = array(
|
|
'*' => 'ADMIN'
|
|
);
|
|
|
|
function makelinksunique() {
|
|
$badURLs = "'" . implode("', '", DB::query("SELECT URLSegment, count(*) FROM SiteTree GROUP BY URLSegment HAVING count(*) > 1")->column()) . "'";
|
|
$pages = DataObject::get("SiteTree", "\"URLSegment\" IN ($badURLs)");
|
|
|
|
foreach($pages as $page) {
|
|
echo "<li>$page->Title: ";
|
|
$urlSegment = $page->URLSegment;
|
|
$page->write();
|
|
if($urlSegment != $page->URLSegment) {
|
|
echo sprintf(_t('SiteTree.LINKSCHANGEDTO', " changed %s -> %s"), $urlSegment, $page->URLSegment);
|
|
}
|
|
else {
|
|
echo sprintf(_t('SiteTree.LINKSALREADYUNIQUE', " %s is already unique"), $urlSegment);
|
|
}
|
|
die();
|
|
}
|
|
}
|
|
}
|
|
?>
|