From a6a00a00400f164c4b18094999a5ed72366dd519 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sun, 13 Sep 2015 14:07:56 -0400 Subject: First draft for plugins system --- app/Model/Acl.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'app/Model') diff --git a/app/Model/Acl.php b/app/Model/Acl.php index 8c28cb1a..6042bc29 100644 --- a/app/Model/Acl.php +++ b/app/Model/Acl.php @@ -94,6 +94,18 @@ class Acl extends Base 'twofactor' => array('disable'), ); + /** + * Extend ACL rules + * + * @access public + * @param string $acl_name + * @param aray $rules + */ + public function extend($acl_name, array $rules) + { + $this->$acl_name = array_merge($this->$acl_name, $rules); + } + /** * Return true if the specified controller/action match the given acl * -- cgit v1.2.3