forked from matt-pawley/oc-richeditorsnippets-plugin
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Plugin.php
112 lines (99 loc) · 3.86 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?php namespace Inetis\RicheditorSnippets;
use Event;
use Inetis\RicheditorSnippets\Classes\VersionHelper;
use Input;
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;
use Backend\Facades\BackendAuth;
/**
* RicheditorSnippets Plugin Information File
*/
class Plugin extends PluginBase
{
/**
* 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
if (VersionHelper::instance()->usesLegacyPagesSnippets()) {
$widget->addCss('/plugins/rainlab/pages/assets/css/pages.css', 'RainLab.Pages');
$widget->addJs('/plugins/rainlab/pages/assets/js/pages-page.js', 'RainLab.Pages');
$widget->addJs('/plugins/rainlab/pages/assets/js/pages-snippets.js', 'RainLab.Pages');
}
// Adds custom assets
if ($this->canAccessSnippets()) {
$widget->addJs('/inetis/snippets/list');
$widget->addJs('/plugins/inetis/richeditorsnippets/assets/js/froala.snippets.plugin.js', 'Inetis.RicheditorSnippets');
$widget->addCss('/plugins/inetis/richeditorsnippets/assets/css/richeditorsnippets.css', 'Inetis.RicheditorSnippets');
}
});
// Register components from cache for AJAX handlers
Event::listen('cms.page.initComponents', function($controller, $page, $layout) {
if (Input::ajax()) {
SnippetLoader::restoreComponentSnippetsFromCache($controller, $page);
}
});
// Save the snippets loaded in this page for use inside subsequent AJAX calls
Event::listen('cms.page.postprocess', function($controller, $url, $page, $dataHolder) {
if (!Input::ajax()) {
SnippetLoader::saveCachedSnippets($page);
}
});
}
public function registerMarkupTags()
{
return [
'filters' => [
'parseSnippets' => function($html, $params = []) {
return SnippetParser::parse($html, $params);
}
]
];
}
private function canAccessSnippets(): bool
{
if (!($user = BackendAuth::getUser())) {
return false;
}
if (VersionHelper::instance()->usesLegacyPagesSnippets()) {
return $user->hasAccess('rainlab.pages.access_snippets');
}
// Since OC 3.4, there is no permission to restrict snippets access
return true;
}
}