diff plugins/jqueryui/jqueryui.php @ 0:1e000243b222

vanilla 1.3.3 distro, I hope
author Charlie Root
date Thu, 04 Jan 2018 15:50:29 -0500
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/plugins/jqueryui/jqueryui.php	Thu Jan 04 15:50:29 2018 -0500
@@ -0,0 +1,137 @@
+<?php
+
+/**
+ * jQuery UI
+ *
+ * Provide the jQuery UI library with according themes.
+ *
+ * @version 1.12.0
+ * @author Cor Bosman <roundcube@wa.ter.net>
+ * @author Thomas Bruederli <roundcube@gmail.com>
+ * @author Aleksander Machniak <alec@alec.pl>
+ * @license GNU GPLv3+
+ */
+class jqueryui extends rcube_plugin
+{
+    public $noajax = true;
+    public $version = '1.12.0';
+
+    private static $features = array();
+    private static $ui_theme;
+
+    public function init()
+    {
+        $rcmail = rcmail::get_instance();
+
+        // the plugin might have been force-loaded so do some sanity check first
+        if ($rcmail->output->type != 'html' || self::$ui_theme) {
+          return;
+        }
+
+        $this->load_config();
+
+        // include UI scripts
+        $this->include_script("js/jquery-ui.min.js");
+
+        // include UI stylesheet
+        $skin     = $rcmail->config->get('skin');
+        $ui_map   = $rcmail->config->get('jquery_ui_skin_map', array());
+        $ui_theme = $ui_map[$skin] ?: $skin;
+
+        self::$ui_theme = $ui_theme;
+
+        if (file_exists($this->home . "/themes/$ui_theme/jquery-ui.css")) {
+            $this->include_stylesheet("themes/$ui_theme/jquery-ui.css");
+        }
+        else {
+            $this->include_stylesheet("themes/larry/jquery-ui.css");
+        }
+
+        if ($ui_theme == 'larry') {
+            // patch dialog position function in order to fully fit the close button into the window
+            $rcmail->output->add_script("jQuery.extend(jQuery.ui.dialog.prototype.options.position, {
+                using: function(pos) {
+                    var me = jQuery(this),
+                        offset = me.css(pos).offset(),
+                        topOffset = offset.top - 12;
+                    if (topOffset < 0)
+                        me.css('top', pos.top - topOffset);
+                    if (offset.left + me.outerWidth() + 12 > jQuery(window).width())
+                        me.css('left', pos.left - 12);
+                }
+            });", 'foot');
+        }
+
+        // jquery UI localization
+        $jquery_ui_i18n = $rcmail->config->get('jquery_ui_i18n', array('datepicker'));
+        if (count($jquery_ui_i18n) > 0) {
+            $lang_l = str_replace('_', '-', substr($_SESSION['language'], 0, 5));
+            $lang_s = substr($_SESSION['language'], 0, 2);
+
+            foreach ($jquery_ui_i18n as $package) {
+                if (file_exists($this->home . "/js/i18n/jquery.ui.$package-$lang_l.js")) {
+                    $this->include_script("js/i18n/jquery.ui.$package-$lang_l.js");
+                }
+                else
+                if (file_exists($this->home . "/js/i18n/jquery.ui.$package-$lang_s.js")) {
+                    $this->include_script("js/i18n/jquery.ui.$package-$lang_s.js");
+                }
+            }
+        }
+
+        // Date format for datepicker
+        $date_format = $rcmail->config->get('date_format', 'Y-m-d');
+        $date_format = strtr($date_format, array(
+                'y' => 'y',
+                'Y' => 'yy',
+                'm' => 'mm',
+                'n' => 'm',
+                'd' => 'dd',
+                'j' => 'd',
+        ));
+        $rcmail->output->set_env('date_format', $date_format);
+    }
+
+    public static function miniColors()
+    {
+        if (in_array('miniColors', self::$features)) {
+            return;
+        }
+
+        self::$features[] = 'miniColors';
+
+        $ui_theme = self::$ui_theme;
+        $rcube    = rcube::get_instance();
+        $script   = 'plugins/jqueryui/js/jquery.minicolors.min.js';
+        $css      = "plugins/jqueryui/themes/$ui_theme/jquery.minicolors.css";
+
+        if (!file_exists(INSTALL_PATH . $css)) {
+            $css = "plugins/jqueryui/themes/larry/jquery.minicolors.css";
+        }
+
+        $rcube->output->include_css($css);
+        $rcube->output->add_header(html::tag('script', array('type' => "text/javascript", 'src' => $script)));
+        $rcube->output->add_script('$.fn.miniColors = $.fn.minicolors; $("input.colors").minicolors()', 'docready');
+    }
+
+    public static function tagedit()
+    {
+        if (in_array('tagedit', self::$features)) {
+            return;
+        }
+
+        self::$features[] = 'tagedit';
+
+        $script   = 'plugins/jqueryui/js/jquery.tagedit.js';
+        $rcube    = rcube::get_instance();
+        $ui_theme = self::$ui_theme;
+        $css      = "plugins/jqueryui/themes/$ui_theme/tagedit.css";
+
+        if (!file_exists(INSTALL_PATH . $css)) {
+            $css = "plugins/jqueryui/themes/larry/tagedit.css";
+        }
+
+        $rcube->output->include_css($css);
+        $rcube->output->add_header(html::tag('script', array('type' => "text/javascript", 'src' => $script)));
+    }
+}