Dotclear

source: plugins/dcCKEditor/inc/dc.ckeditor.behaviors.php @ 3730:5c45a5df9a59

Revision 3730:5c45a5df9a59, 4.1 KB checked in by franck <carnet.franck.paul@…>, 8 years ago (diff)

Code formatting (PSR-2)

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

Sites map