PluginProbe
VikBooking Hotel Booking Engine & PMS / trunk
VikBooking Hotel Booking Engine & PMS vtrunk
1.8.15 1.8.14 1.8.13 1.8.12 1.8.11 1.8.10 1.8.9 1.8.6 1.8.7 1.8.8 trunk 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.6.8 1.6.9 1.7.0 1.7.1 1.7.2 1.7.3 All 36 releases
vikbooking / libraries / system / mce.php

mce.php in VikBooking Hotel Booking Engine & PMS trunk, at libraries/system/mce.php

73 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * @package VikBooking - Libraries
4 * @subpackage system
5 * @author E4J s.r.l.
6 * @copyright Copyright (C) 2018 E4J s.r.l. All Rights Reserved.
7 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
8 * @link https://vikwp.com
9 */
10
11 // No direct access
12 defined('ABSPATH') or die('No script kiddies please!');
13
14 /**
15 * Class used to provide support for TinyMCE editor.
16 *
17 * @since 1.0
18 */
19 class VikBookingTinyMCE
20 {
21 /**
22 * Adds a button to the array of buttons for TinyMCE
23 *
24 * @param array $buttons
25 *
26 * @return array
27 */
28 public static function addShortcodesButton($buttons)
29 {
30 $buttons[] = 'vbo-shortcodes';
31
32 return $buttons;
33 }
34
35 /**
36 * Attaches the necessary scripts to handle the shortcode event
37 *
38 * @param array $plugin_array
39 *
40 * @return array
41 */
42 public static function registerShortcodesScript($plugin_array)
43 {
44 // get shortcode model
45 $model = JModel::getInstance('vikbooking', 'shortcodes', 'admin');
46
47 // obtain a categorized shortcodes list
48 $shortcodes = array();
49
50 foreach ($model->all() as $s)
51 {
52 $title = JText::translate($s->title);
53
54 if (!isset($shortcodes[$title]))
55 {
56 $shortcodes[$title] = array();
57 }
58
59 $shortcodes[$title][] = $s;
60 }
61
62 $document = JFactory::getDocument();
63
64 // register script to access JSON object
65 $document->addScriptDeclaration("var VIKBOOKING_SHORTCODES = " . json_encode($shortcodes) . ";");
66 $document->addStyleSheet(VIKBOOKING_ADMIN_ASSETS_URI . 'css/tinymce-shortcodes.css');
67
68 $plugin_array['vbo-shortcodes'] = VIKBOOKING_ADMIN_ASSETS_URI . 'js/tinymce-shortcodes.js';
69
70 return $plugin_array;
71 }
72 }
73