@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | return [ |
4 | - /* you can add your own middleware here */ |
|
4 | + /* you can add your own middleware here */ |
|
5 | 5 | |
6 | - 'middleware' => [], |
|
6 | + 'middleware' => [], |
|
7 | 7 | |
8 | - /* you can set your own table prefix here */ |
|
9 | - 'table_prefix' => 'chck_', |
|
8 | + /* you can set your own table prefix here */ |
|
9 | + 'table_prefix' => 'chck_', |
|
10 | 10 | |
11 | 11 | /* you can set your own table names */ |
12 | 12 | 'table_name_menus' => 'menus', |
@@ -2,8 +2,8 @@ |
||
2 | 2 | |
3 | 3 | return [ |
4 | 4 | |
5 | - 'allLocales' => [ |
|
6 | - 'ace' => ['name' => 'Achinese', 'script' => 'Latn', 'native' => 'Aceh', 'regional' => ''], |
|
5 | + 'allLocales' => [ |
|
6 | + 'ace' => ['name' => 'Achinese', 'script' => 'Latn', 'native' => 'Aceh', 'regional' => ''], |
|
7 | 7 | 'af' => ['name' => 'Afrikaans', 'script' => 'Latn', 'native' => 'Afrikaans', 'regional' => 'af_ZA'], |
8 | 8 | 'agq' => ['name' => 'Aghem', 'script' => 'Latn', 'native' => 'Aghem', 'regional' => ''], |
9 | 9 | 'ak' => ['name' => 'Akan', 'script' => 'Latn', 'native' => 'Akan', 'regional' => 'ak_GH'], |
@@ -142,7 +142,7 @@ |
||
142 | 142 | $contentStart += $startDelimiterLength; |
143 | 143 | $contentEnd = strpos($str, $endDelimiter, $contentStart); |
144 | 144 | if (false === $contentEnd) { |
145 | - break; |
|
145 | + break; |
|
146 | 146 | } |
147 | 147 | $contents[] = substr($str, $contentStart, $contentEnd - $contentStart); |
148 | 148 | $startFrom = $contentEnd + $endDelimiterLength; |
@@ -8,7 +8,7 @@ |
||
8 | 8 | |
9 | 9 | class UserRepository |
10 | 10 | { |
11 | - public function __construct(User $user) |
|
11 | + public function __construct(User $user) |
|
12 | 12 | { |
13 | 13 | $this->user = $user; |
14 | 14 | } |
@@ -9,7 +9,7 @@ |
||
9 | 9 | |
10 | 10 | public static function updateOrCreateFromRequest($req) |
11 | 11 | { |
12 | - $settings = []; |
|
12 | + $settings = []; |
|
13 | 13 | foreach ($req->get('socialmedia') as $smKey => $smValue) { |
14 | 14 | $settings['socialmedia'][$smKey] = $smValue; |
15 | 15 | } |
@@ -160,7 +160,7 @@ |
||
160 | 160 | $blockKey = str_replace('.html', '', $value); |
161 | 161 | $blockName = str_replace('-', ' ', $blockKey); |
162 | 162 | if (file_exists($dir . DIRECTORY_SEPARATOR . $blockKey . '.jpg')) { |
163 | - $blockImage = $dir . DIRECTORY_SEPARATOR . $blockKey . '.jpg'; |
|
163 | + $blockImage = $dir . DIRECTORY_SEPARATOR . $blockKey . '.jpg'; |
|
164 | 164 | } elseif (file_exists($dir . DIRECTORY_SEPARATOR . $blockKey . '.jpeg')) { |
165 | 165 | $blockImage = $dir . DIRECTORY_SEPARATOR . $blockKey . '.jpeg'; |
166 | 166 | } elseif (file_exists($dir . DIRECTORY_SEPARATOR . $blockKey . '.png')) { |
@@ -63,7 +63,7 @@ |
||
63 | 63 | |
64 | 64 | $page = $this->page->where('slug->'.app()->getLocale(), $slug)->first(); |
65 | 65 | if($page == null){ |
66 | - foreach(\LaravelLocalization::getSupportedLocales() as $localeCode => $properties){ |
|
66 | + foreach(\LaravelLocalization::getSupportedLocales() as $localeCode => $properties){ |
|
67 | 67 | $page = $this->page->where('slug->'.$localeCode, $slug)->first(); |
68 | 68 | if($page !== null && $localeCode == app()->getLocale()) break; |
69 | 69 |
@@ -10,24 +10,24 @@ |
||
10 | 10 | |
11 | 11 | class Page extends Eloquent |
12 | 12 | { |
13 | - use HasTranslations; |
|
13 | + use HasTranslations; |
|
14 | 14 | |
15 | 15 | public function template(){ |
16 | - return $this->belongsTo('Chuckbe\Chuckcms\Models\Template'); |
|
16 | + return $this->belongsTo('Chuckbe\Chuckcms\Models\Template'); |
|
17 | 17 | } |
18 | 18 | |
19 | 19 | public function page_blocks(){ |
20 | - return $this->hasMany('Chuckbe\Chuckcms\Models\PageBlock')->orderBy('order'); |
|
20 | + return $this->hasMany('Chuckbe\Chuckcms\Models\PageBlock')->orderBy('order'); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | public function getById($id) |
24 | 24 | { |
25 | - return $this->where('id', $id)->first(); |
|
25 | + return $this->where('id', $id)->first(); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | public function getByIdWithBlocks($id) |
29 | 29 | { |
30 | - return $this->where('id', $id)->with('page_blocks')->first(); |
|
30 | + return $this->where('id', $id)->with('page_blocks')->first(); |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | public function create($values) |
@@ -24,14 +24,14 @@ |
||
24 | 24 | |
25 | 25 | public function getRenderedById($pageblock_id) |
26 | 26 | { |
27 | - $pageblock = $this->where('id', $pageblock_id)->first(); |
|
28 | - $new_pageblock = PageBlockRepository::getRenderedByPageBlock($pageblock); |
|
29 | - return $new_pageblock; |
|
27 | + $pageblock = $this->where('id', $pageblock_id)->first(); |
|
28 | + $new_pageblock = PageBlockRepository::getRenderedByPageBlock($pageblock); |
|
29 | + return $new_pageblock; |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | public function getById($id) |
33 | 33 | { |
34 | - return $this->find($id); |
|
34 | + return $this->find($id); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | public function getCountByPageId($page_id) |