@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | $this->setJsonHeader(); |
| 32 | 32 | $configs = AppRecord::getConfigs('widget', 'Comments'); |
| 33 | 33 | |
| 34 | - $replayTo = (int)$this->request->request->get('replay-to'); |
|
| 34 | + $replayTo = (int) $this->request->request->get('replay-to'); |
|
| 35 | 35 | $model = null; |
| 36 | 36 | // check if its a answer (comment answer type) |
| 37 | 37 | if ($replayTo > 0) { |
@@ -40,15 +40,15 @@ discard block |
||
| 40 | 40 | } else { // sounds like new comment row |
| 41 | 41 | $model = new CommentPostAdd($configs); |
| 42 | 42 | $model->appName = App::$Security->strip_tags($this->request->request->get('app_name')); |
| 43 | - $model->appId = (int)$this->request->request->get('app_id'); |
|
| 43 | + $model->appId = (int) $this->request->request->get('app_id'); |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | // pass general comment params to model |
| 47 | - $model->message = App::$Security->secureHtml((string)$this->request->request->get('message')); |
|
| 47 | + $model->message = App::$Security->secureHtml((string) $this->request->request->get('message')); |
|
| 48 | 48 | $model->guestName = App::$Security->strip_tags($this->request->request->get('guest-name')); |
| 49 | 49 | |
| 50 | 50 | // check model conditions before add new row |
| 51 | - if (!$model|| !$model->check()) { |
|
| 51 | + if (!$model || !$model->check()) { |
|
| 52 | 52 | throw new NativeException('Unknown error'); |
| 53 | 53 | } |
| 54 | 54 | |
@@ -43,7 +43,7 @@ |
||
| 43 | 43 | $records = CommentAnswer::with(['user', 'user.profile', 'user.role']) |
| 44 | 44 | ->where('comment_id', $commentId) |
| 45 | 45 | ->where('moderate', false); |
| 46 | - if ((bool)$configs['onlyLocale']) { |
|
| 46 | + if ((bool) $configs['onlyLocale']) { |
|
| 47 | 47 | $records = $records->where('lang', '=', $this->request->getLanguage()); |
| 48 | 48 | } |
| 49 | 49 | |
@@ -34,9 +34,9 @@ discard block |
||
| 34 | 34 | // get configs |
| 35 | 35 | $configs = AppRecord::getConfigs('widget', 'Comments'); |
| 36 | 36 | // items per page |
| 37 | - $perPage = (int)$configs['perPage']; |
|
| 37 | + $perPage = (int) $configs['perPage']; |
|
| 38 | 38 | // offset can be only integer |
| 39 | - $index = (int)$this->request->query->get('offset', 0); |
|
| 39 | + $index = (int) $this->request->query->get('offset', 0); |
|
| 40 | 40 | $offset = $perPage * $index; |
| 41 | 41 | |
| 42 | 42 | // select comments from db and check it |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | ->where('moderate', false); |
| 46 | 46 | |
| 47 | 47 | // check if comments is depend of language locale |
| 48 | - if ((bool)$configs['onlyLocale']) { |
|
| 48 | + if ((bool) $configs['onlyLocale']) { |
|
| 49 | 49 | $query = $query->where('lang', '=', $this->request->getLanguage()); |
| 50 | 50 | } |
| 51 | 51 | |
@@ -40,14 +40,14 @@ |
||
| 40 | 40 | // for each item in path array calculate comments count |
| 41 | 41 | foreach ($ids as $id) { |
| 42 | 42 | $query = CommentPost::where('app_name', $appName) |
| 43 | - ->where('app_relation_id', (int)$id) |
|
| 43 | + ->where('app_relation_id', (int) $id) |
|
| 44 | 44 | ->where('moderate', '=', 0); |
| 45 | 45 | // check if comments is depend of language locale |
| 46 | - if ((bool)$configs['onlyLocale']) { |
|
| 46 | + if ((bool) $configs['onlyLocale']) { |
|
| 47 | 47 | $query = $query->where('lang', '=', $this->request->getLanguage()); |
| 48 | 48 | } |
| 49 | 49 | // set itemId => count |
| 50 | - $count[(int)$id] = $query->count(); |
|
| 50 | + $count[(int) $id] = $query->count(); |
|
| 51 | 51 | } |
| 52 | 52 | // render json response |
| 53 | 53 | return json_encode(['status' => 1, 'count' => $count]); |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | public function up() |
| 16 | 16 | { |
| 17 | 17 | // set nullable varchar type for token column |
| 18 | - $this->getSchema()->table('users', function($table){ |
|
| 18 | + $this->getSchema()->table('users', function($table) { |
|
| 19 | 19 | $table->string('approve_token', 128)->nullable()->default(null)->change(); |
| 20 | 20 | }); |
| 21 | 21 | // set approve_token = null where it like '0' str or '' |
@@ -29,13 +29,13 @@ discard block |
||
| 29 | 29 | }); |
| 30 | 30 | } |
| 31 | 31 | if (!$this->getSchema()->hasColumn('comment_answers', 'app_relation_id')) { |
| 32 | - $this->getSchema()->table('comment_answers', function ($table){ |
|
| 32 | + $this->getSchema()->table('comment_answers', function($table) { |
|
| 33 | 33 | $table->integer('app_relation_id')->unsigned()->default(0)->after('app_name'); |
| 34 | 34 | }); |
| 35 | 35 | } |
| 36 | 36 | // @todo: add algo to find app_name & app_id for oldest comments |
| 37 | 37 | if ($this->getSchema()->hasColumn('comment_posts', 'pathway')) { |
| 38 | - $this->getSchema()->table('comment_posts', function ($table){ |
|
| 38 | + $this->getSchema()->table('comment_posts', function($table) { |
|
| 39 | 39 | $table->dropColumn('pathway'); |
| 40 | 40 | }); |
| 41 | 41 | } |
@@ -1,49 +1,49 @@ |
||
| 1 | 1 | <?php return [ |
| 2 | - 'baseProto' => 'http', |
|
| 3 | - 'baseDomain' => 'ffcms3.test', |
|
| 4 | - 'basePath' => '/', |
|
| 5 | - 'passwordSalt' => '$2a$07$GEc5J9C48A0Aom5ph53Al13aa$', |
|
| 6 | - 'timezone' => 'Europe/Moscow', |
|
| 7 | - 'adminEmail' => false, |
|
| 8 | - 'debug' => [ |
|
| 9 | - 'all' => false, |
|
| 10 | - 'cookie' => [ |
|
| 11 | - 'key' => 'fdebug_ebcfb0', |
|
| 12 | - 'value' => 'e377c1648b7f1f6364c081bd339a93c101881f77da9b815a4ed605822ed33dee9debee99611afe0001be2c8e7e07705833901954543' |
|
| 13 | - ] |
|
| 14 | - ], |
|
| 15 | - 'userCron' => false, |
|
| 16 | - 'testSuite' => false, |
|
| 17 | - 'theme' => [ |
|
| 18 | - 'Front' => 'default', |
|
| 19 | - 'Admin' => 'default' |
|
| 20 | - ], |
|
| 21 | - 'database' => [ |
|
| 22 | - 'driver' => 'mysql', |
|
| 23 | - 'host' => '127.0.0.1', |
|
| 24 | - 'username' => 'mysql', |
|
| 25 | - 'password' => 'mysql', |
|
| 26 | - 'database' => 'ffcms', |
|
| 27 | - 'prefix' => 'ffcms_', |
|
| 28 | - 'charset' => 'utf8', |
|
| 29 | - 'collation' => 'utf8_unicode_ci' |
|
| 30 | - ], |
|
| 31 | - 'mail' => [ |
|
| 32 | - 'host' => 'localhost', |
|
| 33 | - 'port' => '23', |
|
| 34 | - 'user' => '[email protected]', |
|
| 35 | - 'encrypt' => 'tls', |
|
| 36 | - 'password' => '1234' |
|
| 37 | - ], |
|
| 38 | - 'baseLanguage' => 'en', |
|
| 39 | - 'multiLanguage' => true, |
|
| 40 | - 'singleLanguage' => 'en', |
|
| 41 | - 'languages' => [ |
|
| 42 | - 'en', |
|
| 43 | - 'ru' |
|
| 44 | - ], |
|
| 45 | - 'languageDomainAlias' => false, |
|
| 46 | - 'gaClientId' => '570934480862-son8fr180fr6u6tlt9iqpjpoesngro0o.apps.googleusercontent.com', |
|
| 47 | - 'gaTrackId' => false, |
|
| 48 | - 'trustedProxy' => false |
|
| 2 | + 'baseProto' => 'http', |
|
| 3 | + 'baseDomain' => 'ffcms3.test', |
|
| 4 | + 'basePath' => '/', |
|
| 5 | + 'passwordSalt' => '$2a$07$GEc5J9C48A0Aom5ph53Al13aa$', |
|
| 6 | + 'timezone' => 'Europe/Moscow', |
|
| 7 | + 'adminEmail' => false, |
|
| 8 | + 'debug' => [ |
|
| 9 | + 'all' => false, |
|
| 10 | + 'cookie' => [ |
|
| 11 | + 'key' => 'fdebug_ebcfb0', |
|
| 12 | + 'value' => 'e377c1648b7f1f6364c081bd339a93c101881f77da9b815a4ed605822ed33dee9debee99611afe0001be2c8e7e07705833901954543' |
|
| 13 | + ] |
|
| 14 | + ], |
|
| 15 | + 'userCron' => false, |
|
| 16 | + 'testSuite' => false, |
|
| 17 | + 'theme' => [ |
|
| 18 | + 'Front' => 'default', |
|
| 19 | + 'Admin' => 'default' |
|
| 20 | + ], |
|
| 21 | + 'database' => [ |
|
| 22 | + 'driver' => 'mysql', |
|
| 23 | + 'host' => '127.0.0.1', |
|
| 24 | + 'username' => 'mysql', |
|
| 25 | + 'password' => 'mysql', |
|
| 26 | + 'database' => 'ffcms', |
|
| 27 | + 'prefix' => 'ffcms_', |
|
| 28 | + 'charset' => 'utf8', |
|
| 29 | + 'collation' => 'utf8_unicode_ci' |
|
| 30 | + ], |
|
| 31 | + 'mail' => [ |
|
| 32 | + 'host' => 'localhost', |
|
| 33 | + 'port' => '23', |
|
| 34 | + 'user' => '[email protected]', |
|
| 35 | + 'encrypt' => 'tls', |
|
| 36 | + 'password' => '1234' |
|
| 37 | + ], |
|
| 38 | + 'baseLanguage' => 'en', |
|
| 39 | + 'multiLanguage' => true, |
|
| 40 | + 'singleLanguage' => 'en', |
|
| 41 | + 'languages' => [ |
|
| 42 | + 'en', |
|
| 43 | + 'ru' |
|
| 44 | + ], |
|
| 45 | + 'languageDomainAlias' => false, |
|
| 46 | + 'gaClientId' => '570934480862-son8fr180fr6u6tlt9iqpjpoesngro0o.apps.googleusercontent.com', |
|
| 47 | + 'gaTrackId' => false, |
|
| 48 | + 'trustedProxy' => false |
|
| 49 | 49 | ]; |
| 50 | 50 | \ No newline at end of file |
@@ -1,8 +1,8 @@ |
||
| 1 | 1 | <?php return [ |
| 2 | - 'Alias' => [ |
|
| 3 | - 'Front' => [ |
|
| 4 | - '/' => '/content/list/news', |
|
| 5 | - '/about' => '/content/read/page/about-page' |
|
| 6 | - ] |
|
| 7 | - ] |
|
| 2 | + 'Alias' => [ |
|
| 3 | + 'Front' => [ |
|
| 4 | + '/' => '/content/list/news', |
|
| 5 | + '/about' => '/content/read/page/about-page' |
|
| 6 | + ] |
|
| 7 | + ] |
|
| 8 | 8 | ]; |
| 9 | 9 | \ No newline at end of file |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | public function init(): void |
| 21 | 21 | { |
| 22 | 22 | if (App::$Request->getLanguage() !== 'en') { |
| 23 | - App::$Translate->append('/i18n/Front/' . App::$Request->getLanguage() . '/CommentWidget.php'); |
|
| 23 | + App::$Translate->append('/i18n/Front/'.App::$Request->getLanguage().'/CommentWidget.php'); |
|
| 24 | 24 | } |
| 25 | 25 | } |
| 26 | 26 | |
@@ -30,14 +30,14 @@ discard block |
||
| 30 | 30 | */ |
| 31 | 31 | public function display(): ?string |
| 32 | 32 | { |
| 33 | - if (!$this->name || (int)$this->id < 1) { |
|
| 33 | + if (!$this->name || (int) $this->id < 1) { |
|
| 34 | 34 | return null; |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | return App::$View->render('widgets/comments/show', [ |
| 38 | 38 | 'configs' => $this->getConfigs(), |
| 39 | - 'name' => (string)$this->name, |
|
| 40 | - 'id' => (int)$this->id, |
|
| 39 | + 'name' => (string) $this->name, |
|
| 40 | + 'id' => (int) $this->id, |
|
| 41 | 41 | ]); |
| 42 | 42 | } |
| 43 | 43 | } |
@@ -11,12 +11,12 @@ |
||
| 11 | 11 | mb_internal_encoding('UTF-8'); |
| 12 | 12 | |
| 13 | 13 | // load composer packages |
| 14 | -$loader = require root . '/vendor/autoload.php'; |
|
| 14 | +$loader = require root.'/vendor/autoload.php'; |
|
| 15 | 15 | // enable autoload for general namespaces user apps |
| 16 | 16 | $loader->add('Apps\\', root); |
| 17 | 17 | $loader->add('Extend\\', root); |
| 18 | 18 | $loader->add('Widgets\\', root); |
| 19 | 19 | |
| 20 | 20 | // tmp @todo |
| 21 | -$loader->add('Widgets\\', root . '/vendor/phpffcms/ffcms-tinymce/src'); |
|
| 22 | -$loader->add('Apps\\', root . '/vendor/phpffcms/ffcms-tinymce/src'); |
|
| 23 | 21 | \ No newline at end of file |
| 22 | +$loader->add('Widgets\\', root.'/vendor/phpffcms/ffcms-tinymce/src'); |
|
| 23 | +$loader->add('Apps\\', root.'/vendor/phpffcms/ffcms-tinymce/src'); |
|
| 24 | 24 | \ No newline at end of file |