| | |
| | | abstract class rcube_plugin |
| | | { |
| | | public $ID; |
| | | |
| | | /** |
| | | * Holds an istance of Plugin API |
| | | * |
| | | * @var rcube_plugin_api |
| | | */ |
| | | public $api; |
| | | public $task; |
| | | protected $home; |
| | |
| | | |
| | | /** |
| | | * Default constructor. |
| | | * |
| | | * @param rcube_plugin_api $api Plugin API |
| | | */ |
| | | public function __construct($api) |
| | | { |
| | |
| | | * Load local config file from plugins directory. |
| | | * The loaded values are patched over the global configuration. |
| | | * |
| | | * @param string Config file name relative to the plugin's folder |
| | | * @param string $fname Config file name relative to the plugin's folder |
| | | * @return boolean True on success, false on failure |
| | | */ |
| | | public function load_config($fname = 'config.inc.php') |
| | |
| | | /** |
| | | * Register a callback function for a specific (server-side) hook |
| | | * |
| | | * @param string Hook name |
| | | * @param mixed Callback function as string or array with object reference and method name |
| | | * @param string $hook Hook name |
| | | * @param mixed $callback Callback function as string or array with object reference and method name |
| | | */ |
| | | public function add_hook($hook, $callback) |
| | | { |
| | |
| | | /** |
| | | * Load localized texts from the plugins dir |
| | | * |
| | | * @param string Directory to search in |
| | | * @param mixed Make texts also available on the client (array with list or true for all) |
| | | * @param string $dir Directory to search in |
| | | * @param mixed $add2client Make texts also available on the client (array with list or true for all) |
| | | */ |
| | | public function add_texts($dir, $add2client = false) |
| | | { |
| | |
| | | /** |
| | | * Wrapper for rcmail::gettext() adding the plugin ID as domain |
| | | * |
| | | * @param string $p Message identifier |
| | | * @return string Localized text |
| | | * @see rcmail::gettext() |
| | | */ |
| | |
| | | /** |
| | | * Register this plugin to be responsible for a specific task |
| | | * |
| | | * @param string Task name (only characters [a-z0-9_.-] are allowed) |
| | | * @param string $task Task name (only characters [a-z0-9_.-] are allowed) |
| | | */ |
| | | public function register_task($task) |
| | | { |
| | |
| | | * |
| | | * The callback will be executed upon a request like /?_task=mail&_action=plugin.myaction |
| | | * |
| | | * @param string Action name (should be unique) |
| | | * @param mixed Callback function as string or array with object reference and method name |
| | | * @param string $action Action name (should be unique) |
| | | * @param mixed $callback Callback function as string or array with object reference and method name |
| | | */ |
| | | public function register_action($action, $callback) |
| | | { |
| | |
| | | * When parsing a template for display, tags like <roundcube:object name="plugin.myobject" /> |
| | | * will be replaced by the return value if the registered callback function. |
| | | * |
| | | * @param string Object name (should be unique and start with 'plugin.') |
| | | * @param mixed Callback function as string or array with object reference and method name |
| | | * @param string $name Object name (should be unique and start with 'plugin.') |
| | | * @param mixed $callback Callback function as string or array with object reference and method name |
| | | */ |
| | | public function register_handler($name, $callback) |
| | | { |
| | |
| | | /** |
| | | * Make this javascipt file available on the client |
| | | * |
| | | * @param string File path; absolute or relative to the plugin directory |
| | | * @param string $fn File path; absolute or relative to the plugin directory |
| | | */ |
| | | public function include_script($fn) |
| | | { |
| | |
| | | /** |
| | | * Make this stylesheet available on the client |
| | | * |
| | | * @param string File path; absolute or relative to the plugin directory |
| | | * @param string $fn File path; absolute or relative to the plugin directory |
| | | */ |
| | | public function include_stylesheet($fn) |
| | | { |
| | |
| | | /** |
| | | * Append a button to a certain container |
| | | * |
| | | * @param array Hash array with named parameters (as used in skin templates) |
| | | * @param string Container name where the buttons should be added to |
| | | * @param array $p Hash array with named parameters (as used in skin templates) |
| | | * @param string $container Container name where the buttons should be added to |
| | | * @see rcube_remplate::button() |
| | | */ |
| | | public function add_button($p, $container) |
| | |
| | | * Generate an absolute URL to the given resource within the current |
| | | * plugin directory |
| | | * |
| | | * @param string The file name |
| | | * @param string $fn The file name |
| | | * @return string Absolute URL to the given resource |
| | | */ |
| | | public function url($fn) |
| | |
| | | |
| | | /** |
| | | * Make the given file name link into the plugin directory |
| | | * |
| | | * @param string $fn Filename |
| | | */ |
| | | private function resource_url($fn) |
| | | { |
| | |
| | | |
| | | /** |
| | | * Callback function for array_map |
| | | * |
| | | * @param string $key Array key. |
| | | * @return string |
| | | */ |
| | | private function label_map_callback($key) |
| | | { |