From 98e1d0fe4d6c442516b56a8756109d4b11325859 Mon Sep 17 00:00:00 2001 From: flynsarmy Date: Mon, 7 Sep 2015 14:17:09 +1000 Subject: [PATCH] Add getPublicActions controller method --- modules/backend/classes/Controller.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/backend/classes/Controller.php b/modules/backend/classes/Controller.php index 0575ce6dd..81c57c859 100644 --- a/modules/backend/classes/Controller.php +++ b/modules/backend/classes/Controller.php @@ -553,6 +553,14 @@ class Controller extends Extendable return false; } + /** + * Returns the controllers public actions. + */ + public function getPublicActions() + { + return $this->publicActions; + } + /** * Returns a unique ID for the controller and route. Useful in creating HTML markup. */