forked from inetis-ch/oc-richeditorsnippets-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Plugin.php
86 lines (76 loc) · 2.74 KB
/
Plugin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php namespace Inetis\RicheditorSnippets;
use Event;
use System\Classes\PluginBase;
use Backend\FormWidgets\RichEditor;
use Backend\Classes\Controller;
use Inetis\RicheditorSnippets\Classes\SnippetParser;
use RainLab\Pages\Controllers\Index as StaticPage;
use Inetis\RicheditorSnippets\Classes\SnippetLoader;
/**
* RicheditorSnippets Plugin Information File
*/
class Plugin extends PluginBase
{
/**
* @var array Plugin dependencies
*/
public $require = ['RainLab.Pages'];
/**
* Returns information about this plugin.
*
* @return array
*/
public function pluginDetails()
{
return [
'name' => 'Richeditor Snippets',
'description' => 'Adds button to Richeditor toolbar to quickly add Snippets.',
'author' => 'Tough Developer & inetis',
'icon' => 'icon-newspaper-o',
'homepage' => 'https://github.com/inetis-ch/oc-richeditorsnippets-plugin'
];
}
/**
* Boot method, called right before the request route.
*
* @return array
*/
public function boot()
{
// Extend controllers to always have Static Page methods
Controller::extend(function($widget) {
$widget->addDynamicMethod('onGetInspectorConfiguration', function() {
return (new StaticPage)->onGetInspectorConfiguration();
});
$widget->addDynamicMethod('onGetSnippetNames', function() {
return (new StaticPage)->onGetSnippetNames();
});
$widget->addDynamicMethod('onInspectableGetOptions', function() {
return (new StaticPage)->onInspectableGetOptions();
});
});
RichEditor::extend(function($widget) {
// Adds default CSS/JS for snippets from Rainlab Pages Plugin
$widget->addCss('/plugins/rainlab/pages/assets/css/pages.css');
$widget->addJs('/plugins/rainlab/pages/assets/js/pages-page.js');
$widget->addJs('/plugins/rainlab/pages/assets/js/pages-snippets.js');
// Adds custom javascript
$widget->addJs('/inetis/snippets/list');
$widget->addJs('/plugins/inetis/richeditorsnippets/assets/js/froala.snippets.plugin.js');
});
// Register components from cache for AJAX handlers
Event::listen('cms.page.initComponents', function($controller, $page) {
SnippetLoader::restoreComponentSnippetsFromCache($controller, $page);
});
}
public function registerMarkupTags()
{
return [
'filters' => [
'parseSnippets' => function($html) {
return SnippetParser::parse($html);
}
]
];
}
}