diff options
author | thomascube <thomas@roundcube.net> | 2009-04-26 16:33:22 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2009-04-26 16:33:22 +0000 |
commit | 1c932d58b57930ce527a77e885ace5b430a60883 (patch) | |
tree | a0bf036a0d2dc88897bb6d7d2be59853caa37a98 /program/include/rcube_plugin.php | |
parent | d4d1a2505dfa40c21b6268c352d790e3a4d8ee83 (diff) |
Allow plugins to define their own tasks + add 'domain' parameter for rcube_template::button()
Diffstat (limited to 'program/include/rcube_plugin.php')
-rw-r--r-- | program/include/rcube_plugin.php | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/program/include/rcube_plugin.php b/program/include/rcube_plugin.php index 62f65a9e4..8aa4db64b 100644 --- a/program/include/rcube_plugin.php +++ b/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 * |