Dotclear

source: plugins/dcCKEditor/inc/dc.ckeditor.behaviors.php @ 3731:3770620079d4

Revision 3731:3770620079d4, 3.9 KB checked in by franck <carnet.franck.paul@…>, 8 years ago (diff)

Simplify licence block at the beginning of each file

Line 
1<?php
2/**
3 * @brief dcCKEditor, a plugin for Dotclear 2
4 *
5 * @package Dotclear
6 * @subpackage Plugins
7 *
8 * @copyright Olivier Meunier & Association Dotclear
9 * @copyright GPL-2.0-only
10 */
11
12class dcCKEditorBehaviors
13{
14    protected static $p_url      = 'index.php?pf=dcCKEditor';
15    protected static $config_url = 'plugin.php?p=dcCKEditor&config=1';
16
17    /**
18     * adminPostEditor add javascript to the DOM to load ckeditor depending on context
19     *
20     * @param editor   <b>string</b> wanted editor
21     * @param context  <b>string</b> page context (post,page,comment,event,...)
22     * @param tags     <b>array</b>  array of ids into inject editor
23     * @param syntax   <b>string</b> wanted syntax (xhtml)
24     */
25    public static function adminPostEditor($editor = '', $context = '', array $tags = array(), $syntax = 'xhtml')
26    {
27        if (empty($editor) || $editor != 'dcCKEditor' || $syntax != 'xhtml') {return;}
28
29        $config_js = self::$config_url;
30        if (!empty($context)) {
31            $config_js .= '&context=' . $context;
32        }
33
34        $res =
35        '<script type="text/javascript">' . "\n" .
36        dcPage::jsVar('dotclear.ckeditor_context', $context) .
37        'dotclear.ckeditor_tags_context = ' . sprintf('{%s:["%s"]};' . "\n", $context, implode('","', $tags)) .
38        'var CKEDITOR_BASEPATH = "' . DC_ADMIN_URL . self::$p_url . '/js/ckeditor/";' . "\n" .
39        dcPage::jsVar('dotclear.admin_base_url', DC_ADMIN_URL) .
40        dcPage::jsVar('dotclear.base_url', $GLOBALS['core']->blog->host) .
41        dcPage::jsVar('dotclear.dcckeditor_plugin_url', DC_ADMIN_URL . self::$p_url) .
42        'CKEDITOR_GETURL = function(resource) {
43                // If this is not a full or absolute path.
44                if ( resource.indexOf(":/") == -1 && resource.indexOf("/") !== 0 ) {
45                    resource = this.basePath + resource;
46                }
47                return resource;
48             };' . "\n" .
49        "dotclear.msg.img_select_title = '" . html::escapeJS(__('Media chooser')) . "'; " . "\n" .
50        "dotclear.msg.img_select_accesskey = '" . html::escapeJS(__('m')) . "'; " . "\n" .
51        "dotclear.msg.post_link_title = '" . html::escapeJS(__('Link to an entry')) . "'; " . "\n" .
52        "dotclear.msg.link_title = '" . html::escapeJS(__('Link')) . "'; " . "\n" .
53        "dotclear.msg.link_accesskey = '" . html::escapeJS(__('l')) . "'; " . "\n" .
54        "dotclear.msg.img_title = '" . html::escapeJS(__('External image')) . "'; " . "\n" .
55        "dotclear.msg.url_cannot_be_empty = '" . html::escapeJS(__('URL field cannot be empty.')) . "';" . "\n" .
56        "</script>\n" .
57        dcPage::jsLoad(self::$p_url . '/js/ckeditor/ckeditor.js') .
58        dcPage::jsLoad(self::$p_url . '/js/ckeditor/adapters/jquery.js') .
59        dcPage::jsLoad($config_js);
60
61        if ($GLOBALS['core']->auth->user_prefs->interface->htmlfontsize) {
62            $res .=
63            '<script type="text/javascript">' . "\n" .
64            dcPage::jsVar('dotclear_htmlFontSize', $GLOBALS['core']->auth->user_prefs->interface->htmlfontsize) . "\n" .
65                "</script>\n";
66        }
67
68        return $res;
69    }
70
71    public static function adminPopupMedia($editor = '')
72    {
73        if (empty($editor) || $editor != 'dcCKEditor') {return;}
74
75        return dcPage::jsLoad(self::$p_url . '/js/popup_media.js');
76    }
77
78    public static function adminPopupLink($editor = '')
79    {
80        if (empty($editor) || $editor != 'dcCKEditor') {return;}
81
82        return dcPage::jsLoad(self::$p_url . '/js/popup_link.js');
83    }
84
85    public static function adminPopupPosts($editor = '')
86    {
87        if (empty($editor) || $editor != 'dcCKEditor') {return;}
88
89        return dcPage::jsLoad(self::$p_url . '/js/popup_posts.js');
90    }
91
92    public static function adminMediaURLParams($p)
93    {
94        if (!empty($_GET['editor'])) {
95            $p['editor'] = html::sanitizeURL($_GET['editor']);
96        }
97    }
98
99    public static function getTagsContext()
100    {
101        return self::$tagsContext;
102    }
103}
Note: See TracBrowser for help on using the repository browser.

Sites map