API CHANGE Removed unused LeftAndMain->callPageMethod(), please use RequestHandler for this instead.

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@92746 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2009-11-21 03:16:44 +00:00
parent 44e3966d96
commit 6e200916eb

View File

@ -38,7 +38,6 @@ class LeftAndMain extends Controller {
'index',
'ajaxupdateparent',
'ajaxupdatesort',
'callPageMethod',
'getitem',
'getsubtree',
'myprofile',
@ -1051,17 +1050,6 @@ JS;
function MceRoot() {
return MCE_ROOT;
}
/**
* Use this as an action handler for custom CMS buttons.
*/
function callPageMethod($data, $form) {
$methodName = $form->buttonClicked()->extraData();
$record = $this->currentPage();
if(!$record) return false;
return $record->$methodName($data, $form);
}
/**
* Register the given javascript file as required in the CMS.