@@ -14,8 +14,9 @@ |
||
14 | 14 | |
15 | 15 | public function init() |
16 | 16 | { |
17 | - if ($this->message === null) |
|
18 | - $this->message = 'Hello, world'; |
|
17 | + if ($this->message === null) { |
|
18 | + $this->message = 'Hello, world'; |
|
19 | + } |
|
19 | 20 | } |
20 | 21 | |
21 | 22 | public function display() |
@@ -26,7 +26,7 @@ |
||
26 | 26 | $query = new UserRecords(); |
27 | 27 | |
28 | 28 | // set current page and offset |
29 | - $page = (int)App::$Request->query->get('page'); |
|
29 | + $page = (int) App::$Request->query->get('page'); |
|
30 | 30 | $offset = $page * self::ITEM_PER_PAGE; |
31 | 31 | |
32 | 32 | // build pagination |
@@ -17,8 +17,8 @@ discard block |
||
17 | 17 | public $captcha; |
18 | 18 | |
19 | 19 | /** |
20 | - * Labels |
|
21 | - */ |
|
20 | + * Labels |
|
21 | + */ |
|
22 | 22 | public function labels() |
23 | 23 | { |
24 | 24 | return [ |
@@ -28,8 +28,8 @@ discard block |
||
28 | 28 | } |
29 | 29 | |
30 | 30 | /** |
31 | - * Validation rules |
|
32 | - */ |
|
31 | + * Validation rules |
|
32 | + */ |
|
33 | 33 | public function rules() |
34 | 34 | { |
35 | 35 | return [ |
@@ -16,8 +16,8 @@ discard block |
||
16 | 16 | const COMPRESS_QUALITY = 90; |
17 | 17 | |
18 | 18 | /** |
19 | - * Example of usage magic labels for future form helper usage |
|
20 | - */ |
|
19 | + * Example of usage magic labels for future form helper usage |
|
20 | + */ |
|
21 | 21 | public function labels() |
22 | 22 | { |
23 | 23 | return [ |
@@ -26,8 +26,8 @@ discard block |
||
26 | 26 | } |
27 | 27 | |
28 | 28 | /** |
29 | - * Example of usage magic rules for future usage in condition $model->validate() |
|
30 | - */ |
|
29 | + * Example of usage magic rules for future usage in condition $model->validate() |
|
30 | + */ |
|
31 | 31 | public function rules() |
32 | 32 | { |
33 | 33 | return [ |
@@ -17,8 +17,8 @@ discard block |
||
17 | 17 | public $captcha; |
18 | 18 | |
19 | 19 | /** |
20 | - * Labels |
|
21 | - */ |
|
20 | + * Labels |
|
21 | + */ |
|
22 | 22 | public function labels() |
23 | 23 | { |
24 | 24 | return [ |
@@ -28,8 +28,8 @@ discard block |
||
28 | 28 | } |
29 | 29 | |
30 | 30 | /** |
31 | - * Validation rules |
|
32 | - */ |
|
31 | + * Validation rules |
|
32 | + */ |
|
33 | 33 | public function rules() |
34 | 34 | { |
35 | 35 | return [ |
@@ -9,4 +9,4 @@ |
||
9 | 9 | ['type' => 'link', 'text' => __('Group management'), 'link' => ['user/grouplist']], |
10 | 10 | ['type' => 'link', 'text' => __('Settings'), 'link' => ['user/settings']] |
11 | 11 | ] |
12 | -]);?> |
|
13 | 12 | \ No newline at end of file |
13 | +]); ?> |
|
14 | 14 | \ No newline at end of file |
@@ -9,4 +9,4 @@ |
||
9 | 9 | ['type' => 'link', 'text' => __('Group management'), 'link' => ['user/grouplist']], |
10 | 10 | ['type' => 'link', 'text' => __('Settings'), 'link' => ['user/settings']] |
11 | 11 | ] |
12 | -]);?> |
|
13 | 12 | \ No newline at end of file |
13 | +]); ?> |
|
14 | 14 | \ No newline at end of file |
@@ -1,34 +1,34 @@ |
||
1 | 1 | <?php return [ |
2 | - 'basePath' => '/', |
|
3 | - 'passwordSalt' => '$2a$10$1o81mUjA4NhQp8nSeaFmN8', |
|
4 | - 'debug' => [ |
|
5 | - 'all' => false, |
|
6 | - 'cookie' => [ |
|
7 | - 'key' => 'fdebug', |
|
8 | - 'value' => 'jiSpq941Am' |
|
9 | - ] |
|
10 | - ], |
|
11 | - 'theme' => [ |
|
12 | - 'Front' => 'default', |
|
13 | - 'Admin' => 'default' |
|
14 | - ], |
|
15 | - 'database' => [ |
|
16 | - 'driver' => 'mysql', |
|
17 | - 'host' => '127.0.0.1', |
|
18 | - 'database' => 'ffcms3', |
|
19 | - 'username' => 'mysql', |
|
20 | - 'password' => 'mysql', |
|
21 | - 'charset' => 'utf8', |
|
22 | - 'collation' => 'utf8_unicode_ci', |
|
23 | - 'prefix' => 'ffcms_' |
|
24 | - ], |
|
25 | - 'adminEmail' => '[email protected]', |
|
26 | - 'baseLanguage' => 'en', |
|
27 | - 'multiLanguage' => true, |
|
28 | - 'singleLanguage' => 'en', |
|
29 | - 'languages' => [ |
|
30 | - 'en', |
|
31 | - 'ru' |
|
32 | - ], |
|
33 | - 'languageDomainAlias' => false |
|
2 | + 'basePath' => '/', |
|
3 | + 'passwordSalt' => '$2a$10$1o81mUjA4NhQp8nSeaFmN8', |
|
4 | + 'debug' => [ |
|
5 | + 'all' => false, |
|
6 | + 'cookie' => [ |
|
7 | + 'key' => 'fdebug', |
|
8 | + 'value' => 'jiSpq941Am' |
|
9 | + ] |
|
10 | + ], |
|
11 | + 'theme' => [ |
|
12 | + 'Front' => 'default', |
|
13 | + 'Admin' => 'default' |
|
14 | + ], |
|
15 | + 'database' => [ |
|
16 | + 'driver' => 'mysql', |
|
17 | + 'host' => '127.0.0.1', |
|
18 | + 'database' => 'ffcms3', |
|
19 | + 'username' => 'mysql', |
|
20 | + 'password' => 'mysql', |
|
21 | + 'charset' => 'utf8', |
|
22 | + 'collation' => 'utf8_unicode_ci', |
|
23 | + 'prefix' => 'ffcms_' |
|
24 | + ], |
|
25 | + 'adminEmail' => '[email protected]', |
|
26 | + 'baseLanguage' => 'en', |
|
27 | + 'multiLanguage' => true, |
|
28 | + 'singleLanguage' => 'en', |
|
29 | + 'languages' => [ |
|
30 | + 'en', |
|
31 | + 'ru' |
|
32 | + ], |
|
33 | + 'languageDomainAlias' => false |
|
34 | 34 | ]; |
35 | 35 | \ No newline at end of file |
@@ -4,7 +4,6 @@ |
||
4 | 4 | |
5 | 5 | use Apps\ActiveRecord\Profile; |
6 | 6 | use Apps\ActiveRecord\User; |
7 | -use Apps\Controller\Console\Db; |
|
8 | 7 | use Ffcms\Core\App; |
9 | 8 | use Ffcms\Core\Arch\Model; |
10 | 9 | use Ffcms\Core\Helper\FileSystem\File; |
@@ -25,8 +25,8 @@ discard block |
||
25 | 25 | } |
26 | 26 | |
27 | 27 | /** |
28 | - * Labels for installation form |
|
29 | - */ |
|
28 | + * Labels for installation form |
|
29 | + */ |
|
30 | 30 | public function labels() |
31 | 31 | { |
32 | 32 | return [ |
@@ -46,8 +46,8 @@ discard block |
||
46 | 46 | } |
47 | 47 | |
48 | 48 | /** |
49 | - * Installation post data validation |
|
50 | - */ |
|
49 | + * Installation post data validation |
|
50 | + */ |
|
51 | 51 | public function rules() |
52 | 52 | { |
53 | 53 | return [ |
@@ -70,7 +70,7 @@ |
||
70 | 70 | $cfg['database'] = $this->db; |
71 | 71 | $cfg['adminEmail'] = $this->email; |
72 | 72 | $cfg['singleLanguage'] = $this->singleLanguage; |
73 | - $cfg['multiLanguage'] = (bool)$this->multiLanguage; |
|
73 | + $cfg['multiLanguage'] = (bool) $this->multiLanguage; |
|
74 | 74 | $cfg['passwordSalt'] = '$2a$07$' . Str::randomLatinNumeric(mt_rand(21, 30)) . '$'; |
75 | 75 | $cfg['debug']['cookie']['key'] = 'fdebug_' . Str::randomLatinNumeric(mt_rand(4, 16)); |
76 | 76 | $cfg['debug']['cookie']['value'] = Str::randomLatinNumeric(mt_rand(32, 128)); |