forked from TheServat/oc-rtler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlugin.php
More file actions
151 lines (135 loc) · 4.26 KB
/
Plugin.php
File metadata and controls
151 lines (135 loc) · 4.26 KB
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<?php namespace RtlWeb\Rtler;
use Backend;
use Config;
use File;
use Request;
use Cms\Classes\Theme;
use System\Classes\PluginBase;
use System\Classes\MarkupManager;
use System\Classes\PluginManager;
use RtlWeb\Rtler\Classes\CssFlipper;
use RtlWeb\Rtler\Classes\UrlGenerator;
use October\Rain\Router\Helper as RouterHelper;
use System\Classes\SettingsManager;
/**
* Rtler Plugin Information File
*/
class Plugin extends PluginBase
{
public function __construct($app)
{
parent::__construct($app);
// if uri is system module and request not ajax run plugin
$path = RouterHelper::normalizeUrl(Request::path());
$backendUri = RouterHelper::normalizeUrl(Config::get('cms.backendUri', 'backend'));
$request = $backendUri . '/system/';
if (stripos($path, $request) === 0) {
if (!Request::ajax() || Request::method() != 'POST') {
PluginManager::$noInit = false;
}
}
}
/**
* Returns information about this plugin.
*
* @return array
*/
public function pluginDetails()
{
return [
'name' => 'rtlweb.rtler::lang.plugin.name',
'description' => 'rtlweb.rtler::lang.plugin.description',
'author' => 'Sajjad Servatjoo',
'icon' => 'icon-leaf'
];
}
public function register()
{
Config::set('cms.backendSkin', 'RtlWeb\Rtler\Skins\RtlSkin');
$this->registerMarkupTags();
$this->registerUrlGenerator();
}
protected function registerUrlGenerator()
{
$this->app['url'] = $this->app->share(function ($app) {
$routes = $app['router']->getRoutes();
$url = new UrlGenerator(
$routes, $app->rebinding(
'request', $this->requestRebinder()
));
$url->setSessionResolver(function () {
return $this->app['session'];
});
// If the route collection is "rebound", for example, when the routes stay
// cached for the application, we will need to rebind the routes on the
// URL generator instance so it has the latest version of the routes.
$app->rebinding('routes', function ($app, $routes) {
$app['url']->setRoutes($routes);
});
return $url;
});
}
protected function requestRebinder()
{
return function ($app, $request) {
$app['url']->setRequest($request);
};
}
/**
* Registers CMS markup tags introduced by this plugin.
*/
public function registerMarkupTags()
{
MarkupManager::instance()->registerCallback(function ($manager) {
$manager->registerFilters([
// Classes
'flipCss' => [$this, 'flipCss'],
]);
});
}
/**
* Registers any back-end configuration for Rtler.
*
* @return array
*/
public function registerSettings()
{
return [
'rtler' => [
'label' => 'rtlweb.rtler::lang.plugin.name',
'description' => 'rtlweb.rtler::lang.plugin.description',
'category' => 'rtlweb.rtler::lang.plugin.name',
'icon' => 'icon-magic',
'class' => 'RtlWeb\Rtler\Models\Settings',
'order' => 500,
'keywords' => 'rtl rtler'
]
];
}
/**
* Twig Markup tag 'flipCss'
* @param $paths
* @param bool $force
* @return array|string
*/
public function flipCss($paths, $force = false)
{
if (trans('system::lang.direction') != 'rtl' && $force == false) {
return $paths;
}
if (!is_array($paths)) {
$paths = [$paths];
}
$rPaths = [];
foreach ($paths as $path) {
$assetPath = $path;
if (File::exists(dirname($assetPath) . '/' . File::name($assetPath) . '.rtl.' . File::extension($assetPath))) {
$newPath = dirname($assetPath) . '.rtl.' . File::extension($assetPath);
} else {
$newPath = CssFlipper::flipCss($assetPath,true);
}
$rPaths[] = $newPath;
}
return $rPaths;
}
}