source: subversion/trunk/roundcubemail/program/include/rcube_plugin.php @ 4870

Last change on this file since 4870 was 4870, checked in by alec, 2 years ago
  • Make local_skin_path() to be a public method
  • Property svn:keywords set to Id
File size: 8.4 KB
Line 
1<?php
2
3/*
4 +-----------------------------------------------------------------------+
5 | program/include/rcube_plugin.php                                      |
6 |                                                                       |
7 | This file is part of the Roundcube Webmail client                     |
8 | Copyright (C) 2008-2009, The Roundcube Dev Team                       |
9 | Licensed under the GNU GPL                                            |
10 |                                                                       |
11 | PURPOSE:                                                              |
12 |  Abstract plugins interface/class                                     |
13 |  All plugins need to extend this class                                |
14 +-----------------------------------------------------------------------+
15 | Author: Thomas Bruederli <roundcube@gmail.com>                        |
16 +-----------------------------------------------------------------------+
17
18 $Id$
19
20*/
21
22/**
23 * Plugin interface class
24 *
25 * @package PluginAPI
26 */
27abstract class rcube_plugin
28{
29  /**
30   * Class name of the plugin instance
31   *
32   * @var string
33   */
34  public $ID;
35
36  /**
37   * Instance of Plugin API
38   *
39   * @var rcube_plugin_api
40   */
41  public $api;
42
43  /**
44   * Regular expression defining task(s) to bind with
45   *
46   * @var string
47   */
48  public $task;
49
50  /**
51   * Disables plugin in AJAX requests
52   *
53   * @var boolean
54   */
55  public $noajax = false;
56
57  /**
58   * Disables plugin in framed mode
59   *
60   * @var boolean
61   */
62  public $noframe = false;
63
64  protected $home;
65  protected $urlbase;
66  private $mytask;
67
68
69  /**
70   * Default constructor.
71   *
72   * @param rcube_plugin_api $api Plugin API
73   */
74  public function __construct($api)
75  {
76    $this->ID = get_class($this);
77    $this->api = $api;
78    $this->home = $api->dir . $this->ID;
79    $this->urlbase = $api->url . $this->ID . '/';
80  }
81 
82  /**
83   * Initialization method, needs to be implemented by the plugin itself
84   */
85  abstract function init();
86
87
88  /**
89   * Attempt to load the given plugin which is required for the current plugin
90   *
91   * @param string Plugin name
92   * @return boolean True on success, false on failure
93   */
94  public function require_plugin($plugin_name)
95  {
96    return $this->api->load_plugin($plugin_name);
97  }
98
99
100  /**
101   * Load local config file from plugins directory.
102   * The loaded values are patched over the global configuration.
103   *
104   * @param string $fname Config file name relative to the plugin's folder
105   * @return boolean True on success, false on failure
106   */
107  public function load_config($fname = 'config.inc.php')
108  {
109    $fpath = $this->home.'/'.$fname;
110    $rcmail = rcmail::get_instance();
111    if (is_file($fpath) && !$rcmail->config->load_from_file($fpath)) {
112      raise_error(array('code' => 527, 'type' => 'php',
113        'file' => __FILE__, 'line' => __LINE__,
114        'message' => "Failed to load config from $fpath"), true, false);
115      return false;
116    }
117   
118    return true;
119  }
120
121  /**
122   * Register a callback function for a specific (server-side) hook
123   *
124   * @param string $hook Hook name
125   * @param mixed  $callback Callback function as string or array with object reference and method name
126   */
127  public function add_hook($hook, $callback)
128  {
129    $this->api->register_hook($hook, $callback);
130  }
131 
132  /**
133   * Load localized texts from the plugins dir
134   *
135   * @param string $dir Directory to search in
136   * @param mixed  $add2client Make texts also available on the client (array with list or true for all)
137   */
138  public function add_texts($dir, $add2client = false)
139  {
140    $domain = $this->ID;
141   
142    $lang = $_SESSION['language'];
143    $locdir = slashify(realpath(slashify($this->home) . $dir));
144    $texts = array();
145
146    // use buffering to handle empty lines/spaces after closing PHP tag
147    ob_start();
148
149    foreach (array('en_US', $lang) as $lng) {
150      @include($locdir . $lng . '.inc');
151      $texts = (array)$labels + (array)$messages + (array)$texts;
152    }
153
154    ob_end_clean();
155
156    // prepend domain to text keys and add to the application texts repository
157    if (!empty($texts)) {
158      $add = array();
159      foreach ($texts as $key => $value)
160        $add[$domain.'.'.$key] = $value;
161
162      $rcmail = rcmail::get_instance();
163      $rcmail->load_language($lang, $add);
164     
165      // add labels to client
166      if ($add2client) {
167        $js_labels = is_array($add2client) ? array_map(array($this, 'label_map_callback'), $add2client) : array_keys($add);
168        $rcmail->output->add_label($js_labels);
169      }
170    }
171  }
172 
173  /**
174   * Wrapper for rcmail::gettext() adding the plugin ID as domain
175   *
176   * @param string $p Message identifier
177   * @return string Localized text
178   * @see rcmail::gettext()
179   */
180  public function gettext($p)
181  {
182    return rcmail::get_instance()->gettext($p, $this->ID);
183  }
184
185  /**
186   * Register this plugin to be responsible for a specific task
187   *
188   * @param string $task Task name (only characters [a-z0-9_.-] are allowed)
189   */
190  public function register_task($task)
191  {
192    if ($this->api->register_task($task, $this->ID))
193      $this->mytask = $task;
194  }
195
196  /**
197    * Register a handler for a specific client-request action
198    *
199    * The callback will be executed upon a request like /?_task=mail&_action=plugin.myaction
200    *
201    * @param string $action  Action name (should be unique)
202    * @param mixed $callback Callback function as string or array with object reference and method name
203   */
204  public function register_action($action, $callback)
205  {
206    $this->api->register_action($action, $this->ID, $callback, $this->mytask);
207  }
208
209  /**
210   * Register a handler function for a template object
211   *
212   * When parsing a template for display, tags like <roundcube:object name="plugin.myobject" />
213   * will be replaced by the return value if the registered callback function.
214   *
215   * @param string $name Object name (should be unique and start with 'plugin.')
216   * @param mixed  $callback Callback function as string or array with object reference and method name
217   */
218  public function register_handler($name, $callback)
219  {
220    $this->api->register_handler($name, $this->ID, $callback);
221  }
222
223  /**
224   * Make this javascipt file available on the client
225   *
226   * @param string $fn File path; absolute or relative to the plugin directory
227   */
228  public function include_script($fn)
229  {
230    $this->api->include_script($this->resource_url($fn));
231  }
232
233  /**
234   * Make this stylesheet available on the client
235   *
236   * @param string $fn File path; absolute or relative to the plugin directory
237   */
238  public function include_stylesheet($fn)
239  {
240    $this->api->include_stylesheet($this->resource_url($fn));
241  }
242 
243  /**
244   * Append a button to a certain container
245   *
246   * @param array $p Hash array with named parameters (as used in skin templates)
247   * @param string $container Container name where the buttons should be added to
248   * @see rcube_remplate::button()
249   */
250  public function add_button($p, $container)
251  {
252    if ($this->api->output->type == 'html') {
253      // fix relative paths
254      foreach (array('imagepas', 'imageact', 'imagesel') as $key)
255        if ($p[$key])
256          $p[$key] = $this->api->url . $this->resource_url($p[$key]);
257     
258      $this->api->add_content($this->api->output->button($p), $container);
259    }
260  }
261 
262  /**
263   * Generate an absolute URL to the given resource within the current
264   * plugin directory
265   *
266   * @param string $fn The file name
267   * @return string Absolute URL to the given resource
268   */
269  public function url($fn)
270  {
271      return $this->api->url . $this->resource_url($fn);
272  }
273
274  /**
275   * Make the given file name link into the plugin directory
276   *
277   * @param string $fn Filename
278   */
279  private function resource_url($fn)
280  {
281    if ($fn[0] != '/' && !preg_match('|^https?://|i', $fn))
282      return $this->ID . '/' . $fn;
283    else
284      return $fn;
285  }
286
287  /**
288   * Provide path to the currently selected skin folder within the plugin directory
289   * with a fallback to the default skin folder.
290   *
291   * @return string Skin path relative to plugins directory
292   */
293  public function local_skin_path()
294  {
295      $skin_path = 'skins/'.$this->api->config->get('skin');
296      if (!is_dir(realpath(slashify($this->home) . $skin_path)))
297        $skin_path = 'skins/default';
298    return $skin_path;
299  }
300
301  /**
302   * Callback function for array_map
303   *
304   * @param string $key Array key.
305   * @return string
306   */
307  private function label_map_callback($key)
308  {
309    return $this->ID.'.'.$key;
310  }
311
312
313}
314
Note: See TracBrowser for help on using the repository browser.