mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
API CHANGE Removed CMSBatchAction->getDoingText(), the same information can be visualized via a spinner button without this overhead
This commit is contained in:
parent
495e15be9f
commit
a99d7b0b1d
@ -510,9 +510,6 @@ class AssetAdmin_DeleteBatchAction extends CMSBatchAction {
|
|||||||
// _t('AssetAdmin_left.ss.SELECTTODEL','Select the folders that you want to delete and then click the button below')
|
// _t('AssetAdmin_left.ss.SELECTTODEL','Select the folders that you want to delete and then click the button below')
|
||||||
return _t('AssetAdmin_DeleteBatchAction.TITLE', 'Delete folders');
|
return _t('AssetAdmin_DeleteBatchAction.TITLE', 'Delete folders');
|
||||||
}
|
}
|
||||||
function getDoingText() {
|
|
||||||
return _t('AssetAdmin_DeletingBatchAction.TITLE', 'Deleting folders');
|
|
||||||
}
|
|
||||||
|
|
||||||
function run(DataObjectSet $records) {
|
function run(DataObjectSet $records) {
|
||||||
$status = array(
|
$status = array(
|
||||||
|
@ -139,9 +139,6 @@ class CMSBatchAction_Publish extends CMSBatchAction {
|
|||||||
function getActionTitle() {
|
function getActionTitle() {
|
||||||
return _t('CMSBatchActions.PUBLISH_PAGES', 'Publish');
|
return _t('CMSBatchActions.PUBLISH_PAGES', 'Publish');
|
||||||
}
|
}
|
||||||
function getDoingText() {
|
|
||||||
return _t('CMSBatchActions.PUBLISHING_PAGES', 'Publishing selected pages');
|
|
||||||
}
|
|
||||||
|
|
||||||
function run(DataObjectSet $pages) {
|
function run(DataObjectSet $pages) {
|
||||||
return $this->batchaction($pages, 'doPublish',
|
return $this->batchaction($pages, 'doPublish',
|
||||||
@ -164,9 +161,6 @@ class CMSBatchAction_Unpublish extends CMSBatchAction {
|
|||||||
function getActionTitle() {
|
function getActionTitle() {
|
||||||
return _t('CMSBatchActions.UNPUBLISH_PAGES', 'Un-publish');
|
return _t('CMSBatchActions.UNPUBLISH_PAGES', 'Un-publish');
|
||||||
}
|
}
|
||||||
function getDoingText() {
|
|
||||||
return _t('CMSBatchActions.UNPUBLISHING_PAGES', 'Un-publishing selected pages');
|
|
||||||
}
|
|
||||||
|
|
||||||
function run(DataObjectSet $pages) {
|
function run(DataObjectSet $pages) {
|
||||||
return $this->batchaction($pages, 'doUnpublish',
|
return $this->batchaction($pages, 'doUnpublish',
|
||||||
@ -185,9 +179,6 @@ class CMSBatchAction_Delete extends CMSBatchAction {
|
|||||||
function getActionTitle() {
|
function getActionTitle() {
|
||||||
return _t('CMSBatchActions.DELETE_DRAFT_PAGES', 'Delete from draft site');
|
return _t('CMSBatchActions.DELETE_DRAFT_PAGES', 'Delete from draft site');
|
||||||
}
|
}
|
||||||
function getDoingText() {
|
|
||||||
return _t('CMSBatchActions.DELETING_DRAFT_PAGES', 'Deleting selected pages from the draft site');
|
|
||||||
}
|
|
||||||
|
|
||||||
function run(DataObjectSet $pages) {
|
function run(DataObjectSet $pages) {
|
||||||
$status = array(
|
$status = array(
|
||||||
@ -235,9 +226,6 @@ class CMSBatchAction_DeleteFromLive extends CMSBatchAction {
|
|||||||
function getActionTitle() {
|
function getActionTitle() {
|
||||||
return _t('CMSBatchActions.DELETE_PAGES', 'Delete from published site');
|
return _t('CMSBatchActions.DELETE_PAGES', 'Delete from published site');
|
||||||
}
|
}
|
||||||
function getDoingText() {
|
|
||||||
return _t('CMSBatchActions.DELETING_PAGES', 'Deleting selected pages from the published site');
|
|
||||||
}
|
|
||||||
|
|
||||||
function run(DataObjectSet $pages) {
|
function run(DataObjectSet $pages) {
|
||||||
$status = array(
|
$status = array(
|
||||||
|
@ -170,7 +170,6 @@ class CMSBatchActionHandler extends RequestHandler {
|
|||||||
* about each batch action:
|
* about each batch action:
|
||||||
* - Link
|
* - Link
|
||||||
* - Title
|
* - Title
|
||||||
* - DoingText
|
|
||||||
*/
|
*/
|
||||||
function batchActionList() {
|
function batchActionList() {
|
||||||
$actions = $this->batchActions();
|
$actions = $this->batchActions();
|
||||||
@ -183,7 +182,6 @@ class CMSBatchActionHandler extends RequestHandler {
|
|||||||
$actionDef = new ArrayData(array(
|
$actionDef = new ArrayData(array(
|
||||||
"Link" => Controller::join_links($this->Link(), $urlSegment),
|
"Link" => Controller::join_links($this->Link(), $urlSegment),
|
||||||
"Title" => $actionObj->getActionTitle(),
|
"Title" => $actionObj->getActionTitle(),
|
||||||
"DoingText" => $actionObj->getDoingText(),
|
|
||||||
));
|
));
|
||||||
$actionList->push($actionDef);
|
$actionList->push($actionDef);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user