From 6e200916eb9ed660c647474f54c479e927f161aa Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Sat, 21 Nov 2009 03:16:44 +0000 Subject: [PATCH] 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 --- code/LeftAndMain.php | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/code/LeftAndMain.php b/code/LeftAndMain.php index 89eee9e2..d17cff5c 100644 --- a/code/LeftAndMain.php +++ b/code/LeftAndMain.php @@ -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.