diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-04-26 16:33:22 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-04-26 16:33:22 +0000 |
| commit | b2787b5920d4d4efbb39f94a1f4e2f52cb676dd1 (patch) | |
| tree | 70a9a41f2b3b29d85387538f654307b2853eb4a1 /roundcubemail/program/include/rcube_plugin.php | |
| parent | 687ffe2013521f0ef6a3d6d69578fe111594b7b3 (diff) | |
Allow plugins to define their own tasks + add 'domain' parameter for rcube_template::button()
git-svn-id: https://svn.roundcube.net/trunk@2427 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcube_plugin.php')
| -rw-r--r-- | roundcubemail/program/include/rcube_plugin.php | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/roundcubemail/program/include/rcube_plugin.php b/roundcubemail/program/include/rcube_plugin.php index 62f65a9e4..8aa4db64b 100644 --- a/roundcubemail/program/include/rcube_plugin.php +++ b/roundcubemail/program/include/rcube_plugin.php @@ -101,11 +101,29 @@ abstract class rcube_plugin * @return string Localized text * @see rcmail::gettext() */ - function gettext($p) + public function gettext($p) { return rcmail::get_instance()->gettext($p, $this->ID); } - + + /** + * Register this plugin to be responsible for a specific task + * + * @param string Task name (only characters [a-z0-9_.-] are allowed) + */ + public function register_task($task) + { + if ($task != asciiwords($task)) { + raise_error(array('code' => 526, 'type' => 'php', 'message' => "Invalid task name: $task. Only characters [a-z0-9_.-] are allowed"), true, false); + } + else if (in_array(rcmail::$main_tasks, $task)) { + raise_error(array('code' => 526, 'type' => 'php', 'message' => "Cannot register taks $task; already taken by another plugin or the application itself"), true, false); + } + else { + rcmail::$main_tasks[] = $task; + } + } + /** * Register a handler for a specific client-request action * |
