Completed
Push — master ( 4291f4...bd067c )
by Alexander
03:11
created
app/modules/Application/Mvc/Model/Model.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     {
40 40
         if ($this->translateModel && defined('LANG')) {
41 41
             // Если есть массив переводов и установлена константа активного языка или другого языка
42
-            if(self::$custom_lang){
42
+            if(self::$custom_lang) {
43 43
                 self::setLang(self::$custom_lang);
44 44
             } else {
45 45
                 self::setLang(LANG); // Устанавливаем текущий язык
Please login to merge, or discard this patch.
app/modules/Sitemap/Controller/IndexController.php 1 patch
Braces   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
                 'class' => 'Publication',
23 23
                 'model' => 'Publication',
24 24
                 'where' => "", // preview_inner='0'  ,  etc.
25
-                'getLink' => function($model, $lang){
25
+                'getLink' => function($model, $lang) {
26 26
                     return $this->langUrlCustom([
27 27
                         'for' => 'publication',
28 28
                         'type' => $model->getTypeSlug(),
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
             ],[
32 32
                 'class' => 'Page',
33 33
                 'model' => 'Page',
34
-                'getLink'      => function($model, $lang){
34
+                'getLink'      => function($model, $lang) {
35 35
                     return $this->langUrlCustom([
36 36
                         'for' => 'page',
37 37
                         'slug' => $model->getSlug()], $lang);
@@ -47,11 +47,11 @@  discard block
 block discarded – undo
47 47
         $cache = $this->getDi()->get('cache');
48 48
         $sitemap_xml = $cache->get($this->cacheViewKey);
49 49
 
50
-        if(!$sitemap_xml){
50
+        if(!$sitemap_xml) {
51 51
             $langs = Language::find(['columns' => 'iso,primary']);
52 52
 
53 53
             //link(s) for main-page(s)
54
-            foreach ($langs as $lang){
54
+            foreach ($langs as $lang) {
55 55
                 $suffix = !$lang['primary'] ? $lang['iso'] . '/' : '';
56 56
                 $this->links[] = [
57 57
                     'url' => 'http://' . $_SERVER['HTTP_HOST'] .  '/' . $suffix,
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
                 foreach ($langs as $lang) {
69 69
                     foreach ($rows as $row) {
70 70
                         $row::setCustomLang($lang->iso);
71
-                        if($row->getSlug() !== 'index' && $row->getTitle()){
71
+                        if($row->getSlug() !== 'index' && $row->getTitle()) {
72 72
                             $this->links[] = [
73 73
                                 'url'        => 'http://' . $_SERVER['HTTP_HOST'] .  $m['getLink']($row, $lang->iso),
74 74
                                 'updated_at' => date('c', strtotime($row->getUpdatedAt())),
Please login to merge, or discard this patch.