Aleksander Machniak
2012-05-09 66510e20d36cb8da4f3012ef063de7bfce9b51aa
program/include/rcube_plugin.php
@@ -81,7 +81,7 @@
    $this->home = $api->dir . $this->ID;
    $this->urlbase = $api->url . $this->ID . '/';
  }
  /**
   * Initialization method, needs to be implemented by the plugin itself
   */
@@ -110,14 +110,15 @@
  public function load_config($fname = 'config.inc.php')
  {
    $fpath = $this->home.'/'.$fname;
    $rcmail = rcmail::get_instance();
    if (is_file($fpath) && !$rcmail->config->load_from_file($fpath)) {
      raise_error(array('code' => 527, 'type' => 'php',
    $rcube = rcube::get_instance();
    if (is_file($fpath) && !$rcube->config->load_from_file($fpath)) {
      rcube::raise_error(array(
        'code' => 527, 'type' => 'php',
        'file' => __FILE__, 'line' => __LINE__,
        'message' => "Failed to load config from $fpath"), true, false);
      return false;
    }
    return true;
  }
@@ -131,7 +132,18 @@
  {
    $this->api->register_hook($hook, $callback);
  }
  /**
   * Unregister a callback function for a specific (server-side) hook.
   *
   * @param string $hook Hook name
   * @param mixed  $callback Callback function as string or array with object reference and method name
   */
  public function remove_hook($hook, $callback)
  {
    $this->api->unregister_hook($hook, $callback);
  }
  /**
   * Load localized texts from the plugins dir
   *
@@ -141,19 +153,47 @@
  public function add_texts($dir, $add2client = false)
  {
    $domain = $this->ID;
    $lang = $_SESSION['language'];
    $lang   = $_SESSION['language'];
    $langs  = array_unique(array('en_US', $lang));
    $locdir = slashify(realpath(slashify($this->home) . $dir));
    $texts = array();
    $texts  = array();
    // Language aliases used to find localization in similar lang, see below
    $aliases = array(
        'de_CH' => 'de_DE',
        'es_AR' => 'es_ES',
        'fa_AF' => 'fa_IR',
        'nl_BE' => 'nl_NL',
        'pt_BR' => 'pt_PT',
        'zh_CN' => 'zh_TW',
    );
    // use buffering to handle empty lines/spaces after closing PHP tag
    ob_start();
    foreach (array('en_US', $lang) as $lng) {
    foreach ($langs as $lng) {
      $fpath = $locdir . $lng . '.inc';
      if (is_file($fpath) && is_readable($fpath)) {
        include($fpath);
        include $fpath;
        $texts = (array)$labels + (array)$messages + (array)$texts;
      }
      else if ($lng != 'en_US') {
        // Find localization in similar language (#1488401)
        $alias = null;
        if (!empty($aliases[$lng])) {
          $alias = $aliases[$lng];
        }
        else if ($key = array_search($lng, $aliases)) {
          $alias = $key;
        }
        if (!empty($alias)) {
          $fpath = $locdir . $alias . '.inc';
          if (is_file($fpath) && is_readable($fpath)) {
            include $fpath;
            $texts = (array)$labels + (array)$messages + (array)$texts;
          }
        }
      }
    }
@@ -167,7 +207,7 @@
      $rcmail = rcmail::get_instance();
      $rcmail->load_language($lang, $add);
      // add labels to client
      if ($add2client) {
        $js_labels = is_array($add2client) ? array_map(array($this, 'label_map_callback'), $add2client) : array_keys($add);
@@ -175,7 +215,7 @@
      }
    }
  }
  /**
   * Wrapper for rcmail::gettext() adding the plugin ID as domain
   *
@@ -185,7 +225,7 @@
   */
  public function gettext($p)
  {
    return rcmail::get_instance()->gettext($p, $this->ID);
    return rcube::get_instance()->gettext($p, $this->ID);
  }
  /**
@@ -245,7 +285,7 @@
  {
    $this->api->include_stylesheet($this->resource_url($fn));
  }
  /**
   * Append a button to a certain container
   *
@@ -260,11 +300,11 @@
      foreach (array('imagepas', 'imageact', 'imagesel') as $key)
        if ($p[$key])
          $p[$key] = $this->api->url . $this->resource_url($p[$key]);
      $this->api->add_content($this->api->output->button($p), $container);
    }
  }
  /**
   * Generate an absolute URL to the given resource within the current
   * plugin directory
@@ -298,9 +338,10 @@
   */
  public function local_skin_path()
  {
      $skin_path = 'skins/'.$this->api->config->get('skin');
      if (!is_dir(realpath(slashify($this->home) . $skin_path)))
        $skin_path = 'skins/default';
    $rcmail = rcube::get_instance();
    $skin_path = 'skins/' . $rcmail->config->get('skin');
    if (!is_dir(realpath(slashify($this->home) . $skin_path)))
      $skin_path = 'skins/default';
    return $skin_path;
  }
@@ -315,6 +356,4 @@
    return $this->ID.'.'.$key;
  }
}