phpffcms /
ffcms
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
| 1 | <?php |
||
| 2 | /** @var $model \Apps\Model\Install\Main\FormInstall */ |
||
| 3 | $form = new \Ffcms\Core\Helper\HTML\Form($model, ['class' => 'form-horizontal', 'method' => 'post']); |
||
| 4 | ?> |
||
| 5 | |||
| 6 | <h1><?= __('FFCMS installation') ?></h1> |
||
| 7 | <hr /> |
||
| 8 | |||
| 9 | <?= $form->start() ?> |
||
|
0 ignored issues
–
show
|
|||
| 10 | |||
| 11 | <h2><?= __('Database configurations') ?></h2> |
||
| 12 | <?= $form->field('db.driver', 'select', ['class' => 'form-control', 'options' => ['mysql', 'pgsql']], __('Select database server driver (type). Recommended - mysql')) ?> |
||
| 13 | <?= $form->field('db.host', 'text', ['class' => 'form-control', 'placeHolder' => 'localhost'], __('Hostname or ip:port address of your database server')) ?> |
||
| 14 | <?= $form->field('db.username', 'text', ['class' => 'form-control', 'placeHolder' => 'root'], __('User name for database connection')) ?> |
||
| 15 | <?= $form->field('db.password', 'text', ['class' => 'form-control', 'placeHolder' => 'rootpwd'], __('User password for database connection')) ?> |
||
| 16 | <?= $form->field('db.database', 'text', ['class' => 'form-control', 'placeHolder' => 'ffdb'], __('Database name in database server')) ?> |
||
| 17 | <?= $form->field('db.prefix', 'text', ['class' => 'form-control', 'placeHolder' => 'ffcms_'], __('Table prefix for multiple usage of single database (example: ffcms_)')) ?> |
||
| 18 | |||
| 19 | <h2><?= __('General configurations') ?></h2> |
||
| 20 | <?= $form->field('email', 'text', ['class' => 'form-control', 'placeHolder' => '[email protected]'], __('Set your general email to use in sendFrom for mailing functions')) ?> |
||
| 21 | <?= $form->field('singleLanguage', 'select', ['class' => 'form-control', 'options' => \App::$Translate->getAvailableLangs()], __('Default language of website')); ?> |
||
| 22 | <?= $form->field('multiLanguage', 'checkbox', ['checked' => true], __('Must we use multi language system in site pathway')); ?> |
||
| 23 | |||
| 24 | <h2><?= __('Administrator account') ?></h2> |
||
| 25 | |||
| 26 | <?= $form->field('user.login', 'text', ['class' => 'form-control'], __('Set administrator account login')) ?> |
||
| 27 | <?= $form->field('user.email', 'text', ['class' => 'form-control'], __('Set administrator account email')) ?> |
||
| 28 | <?= $form->field('user.password', 'password', ['class' => 'form-control'], __('Set administrator password')) ?> |
||
| 29 | <?= $form->submitButton(__('Install'), ['class' => 'btn btn-primary']) ?> |
||
| 30 | |||
| 31 | <?= $form->finish() ?> |
||
| 32 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.