silverstripe-cms/code/BatchActions/CMSBatchAction_Archive.php
2024-09-19 14:06:39 +12:00

35 lines
904 B
PHP

<?php
namespace SilverStripe\CMS\BatchActions;
use SilverStripe\ORM\SS_List;
use SilverStripe\Admin\CMSBatchAction;
use SilverStripe\Control\HTTPResponse;
use SilverStripe\Dev\Deprecation;
/**
* Delete items batch action.
*/
class CMSBatchAction_Archive extends CMSBatchAction
{
public function getActionTitle()
{
return _t(__CLASS__ . '.TITLE', 'Unpublish and archive');
}
public function run(SS_List $pages): HTTPResponse
{
return $this->batchaction(
$pages,
'doArchive',
_t(__CLASS__ . '.RESULT', 'Deleted %d pages from draft and live, and sent them to the archive')
);
}
public function applicablePages($ids)
{
// canArchive() is deprecated, not $this->applicablePagesHelper()
return Deprecation::withSuppressedNotice(fn() => $this->applicablePagesHelper($ids, 'canArchive'));
}
}