@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | } |
96 | 96 | |
97 | 97 | // build path and check is file exists on disk |
98 | - $path = '/upload/gallery/' . $this->id . '/orig/' . $pName; |
|
98 | + $path = '/upload/gallery/'.$this->id.'/orig/'.$pName; |
|
99 | 99 | if (!File::exist($path)) { |
100 | 100 | return null; |
101 | 101 | } |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | |
117 | 117 | // remove extension, thumbs always in jpeg ;D |
118 | 118 | $pName = Str::cleanExtension($pName); |
119 | - $path = '/upload/gallery/' . $this->id . '/thumb/' . $pName . '.jpg'; |
|
119 | + $path = '/upload/gallery/'.$this->id.'/thumb/'.$pName.'.jpg'; |
|
120 | 120 | |
121 | 121 | if (!File::exist($path)) { |
122 | 122 | return null; |
@@ -32,11 +32,11 @@ discard block |
||
32 | 32 | } |
33 | 33 | // check cache is defined |
34 | 34 | if ($this->cache === null || !Obj::isLikeInt($this->cache)) { |
35 | - $this->cache = (int)$cfg['cache']; |
|
35 | + $this->cache = (int) $cfg['cache']; |
|
36 | 36 | } |
37 | 37 | // check item count is defined |
38 | 38 | if ($this->count === null || !Obj::isLikeInt($this->count)) { |
39 | - $this->count = (int)$cfg['count']; |
|
39 | + $this->count = (int) $cfg['count']; |
|
40 | 40 | } |
41 | 41 | } |
42 | 42 | |
@@ -56,12 +56,12 @@ discard block |
||
56 | 56 | $query = $this->makeQuery(); |
57 | 57 | } else { |
58 | 58 | // try get query result from cache |
59 | - $query = App::$Cache->get('widget.newcontent.' . $cacheHash); |
|
59 | + $query = App::$Cache->get('widget.newcontent.'.$cacheHash); |
|
60 | 60 | if ($query === null) { |
61 | 61 | // if query is not cached make it |
62 | 62 | $query = $this->makeQuery(); |
63 | 63 | // and save result to cache |
64 | - App::$Cache->set('widget.newcontent.' . $cacheHash, $query, $this->cache); |
|
64 | + App::$Cache->set('widget.newcontent.'.$cacheHash, $query, $this->cache); |
|
65 | 65 | } |
66 | 66 | } |
67 | 67 |
@@ -33,7 +33,7 @@ |
||
33 | 33 | foreach (App::$Translate->getAvailableLangs() as $lang) { |
34 | 34 | $items[] = [ |
35 | 35 | 'type' => 'link', |
36 | - 'link' => App::$Alias->baseUrlNoLang . '/' . $lang . App::$Request->getPathInfo(), |
|
36 | + 'link' => App::$Alias->baseUrlNoLang.'/'.$lang.App::$Request->getPathInfo(), |
|
37 | 37 | 'text' => '<img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="flag flag-'.$lang.'" />', |
38 | 38 | 'html' => true, |
39 | 39 | '!secure' => true |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | $uriRequest = $_SERVER['REQUEST_URI']; |
13 | 13 | |
14 | 14 | // get configs to prepare posible route to switch environment |
15 | -$configs = require(root . '/Private/Config/Default.php'); |
|
15 | +$configs = require(root.'/Private/Config/Default.php'); |
|
16 | 16 | // remove base path |
17 | 17 | $uriRequest = substr($uriRequest, strlen($configs['basePath'])); |
18 | 18 | $uriArray = explode('/', $uriRequest); |
@@ -23,8 +23,8 @@ discard block |
||
23 | 23 | $uriLoader = ucfirst(strtolower(str_replace('.', '', $uriLoader))); |
24 | 24 | |
25 | 25 | // if loader of interface is available - require it |
26 | -if (in_array($uriLoader, $loaderList, true) && file_exists(root . '/Loader/' . $uriLoader . '/index.php')) { |
|
27 | - require_once (root . '/Loader/' . $uriLoader . '/index.php'); |
|
26 | +if (in_array($uriLoader, $loaderList, true) && file_exists(root.'/Loader/'.$uriLoader.'/index.php')) { |
|
27 | + require_once (root.'/Loader/'.$uriLoader.'/index.php'); |
|
28 | 28 | } else { // else - try to load default interface |
29 | - require_once (root . '/Loader/Front/index.php'); |
|
29 | + require_once (root.'/Loader/Front/index.php'); |
|
30 | 30 | } |
31 | 31 | \ No newline at end of file |
@@ -12,7 +12,7 @@ |
||
12 | 12 | // this environment is based on json response type |
13 | 13 | define('env_type', 'json'); |
14 | 14 | |
15 | -require_once(root . '/Loader/Autoload.php'); |
|
15 | +require_once(root.'/Loader/Autoload.php'); |
|
16 | 16 | |
17 | 17 | // make fast-access alias \App::$Object |
18 | 18 | // class_alias('Ffcms\Core\App', 'App'); |
@@ -8,9 +8,9 @@ |
||
8 | 8 | } |
9 | 9 | |
10 | 10 | // load composer packages |
11 | -$loader = require root . '/vendor/autoload.php'; |
|
11 | +$loader = require root.'/vendor/autoload.php'; |
|
12 | 12 | // enable autoload for general namespaces user apps |
13 | 13 | $loader->add('Apps\\', root); |
14 | -$loader->add('Apps\\', root . '/vendor/phpffcms/demo-app-package/src'); // todo: remove me |
|
14 | +$loader->add('Apps\\', root.'/vendor/phpffcms/demo-app-package/src'); // todo: remove me |
|
15 | 15 | $loader->add('Extend\\', root); |
16 | 16 | $loader->add('Widgets\\', root); |
@@ -3,4 +3,4 @@ |
||
3 | 3 | define('root', __DIR__); |
4 | 4 | error_reporting(E_ALL ^ E_NOTICE); |
5 | 5 | |
6 | -require_once(root . '/Loader/Console/index.php'); |
|
7 | 6 | \ No newline at end of file |
7 | +require_once(root.'/Loader/Console/index.php'); |
|
8 | 8 | \ No newline at end of file |
@@ -22,13 +22,13 @@ |
||
22 | 22 | // widget is not founded, deny run |
23 | 23 | if ($wData === null) { |
24 | 24 | if (App::$Debug !== null) { |
25 | - App::$Debug->addMessage('Widget with name "' . App::$Security->strip_tags(self::$name) . '"[' . self::$class . '] is not founded!', 'error'); |
|
25 | + App::$Debug->addMessage('Widget with name "'.App::$Security->strip_tags(self::$name).'"['.self::$class.'] is not founded!', 'error'); |
|
26 | 26 | } |
27 | 27 | return null; |
28 | 28 | } |
29 | 29 | |
30 | 30 | // if widget is disabled - lets return nothing |
31 | - if ((int)$wData->disabled === 1) { |
|
31 | + if ((int) $wData->disabled === 1) { |
|
32 | 32 | return null; |
33 | 33 | } |
34 | 34 |
@@ -86,18 +86,18 @@ discard block |
||
86 | 86 | $user = App::$User->identity(); |
87 | 87 | // user is not authed ? |
88 | 88 | if ($user === null || !App::$User->isAuth()) { |
89 | - $redirectUrl = App::$Alias->scriptUrl . '/user/login'; |
|
89 | + $redirectUrl = App::$Alias->scriptUrl.'/user/login'; |
|
90 | 90 | App::$Response->redirect($redirectUrl, true); |
91 | 91 | exit(); |
92 | 92 | } |
93 | 93 | |
94 | - $permission = env_name . '/' . App::$Request->getController() . '/' . App::$Request->getAction(); |
|
94 | + $permission = env_name.'/'.App::$Request->getController().'/'.App::$Request->getAction(); |
|
95 | 95 | |
96 | 96 | // doesn't have permission? get the f*ck out |
97 | 97 | if (!$user->getRole()->can($permission)) { |
98 | 98 | App::$Session->invalidate(); |
99 | 99 | |
100 | - $redirectUrl = App::$Alias->scriptUrl . '/user/login'; |
|
100 | + $redirectUrl = App::$Alias->scriptUrl.'/user/login'; |
|
101 | 101 | App::$Response->redirect($redirectUrl, true); |
102 | 102 | exit(); |
103 | 103 | } |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | */ |
145 | 145 | public function getConfigs() |
146 | 146 | { |
147 | - return $this->type === 'widget' ? (array)Serialize::decode($this->widget->configs) : (array)Serialize::decode($this->application->configs); |
|
147 | + return $this->type === 'widget' ? (array) Serialize::decode($this->widget->configs) : (array) Serialize::decode($this->application->configs); |
|
148 | 148 | } |
149 | 149 | |
150 | 150 | /** |