Files
carpseeds.pl/wp-content/plugins/akeebabackupwp/app/Solo/ViewTemplates/Sysconfig/database.blade.php
2024-07-15 11:28:08 +02:00

82 lines
2.3 KiB
PHP

<?php
/**
* @package solo
* @copyright Copyright (c)2014-2022 Nicholas K. Dionysopoulos / Akeeba Ltd
* @license GNU General Public License version 3, or later
*/
use Awf\Text\Text;
use Solo\Helper\Escape;
use Solo\Helper\FEFSelect;
defined('_AKEEBA') or die();
/** @var \Solo\View\Sysconfig\Html $this */
$config = $this->getContainer()->appConfig;
?>
<div class="akeeba-block--warning">
@lang('SOLO_SYSCONFIG_WARNDB')
</div>
<div class="akeeba-form-group">
<label for="driver">
@lang('SOLO_SETUP_LBL_DATABASE_DRIVER')
</label>
{{ \Solo\Helper\Setup::databaseTypesSelect($config->get('dbdriver')) }}
<p class="akeeba-help-text">
@lang('SOLO_SETUP_LBL_DATABASE_DRIVER_HELP')
</p>
</div>
<div class="akeeba-form-group">
<label for="host">
@lang('SOLO_SETUP_LBL_DATABASE_HOST')
</label>
<input type="text" id="host" name="host" placeholder="@lang('SOLO_SETUP_LBL_DATABASE_HOST')" value="{{ $config->get('dbhost') }}">
<p class="akeeba-help-text">
@lang('SOLO_SETUP_LBL_DATABASE_HOST_HELP')
</p>
</div>
<div class="akeeba-form-group">
<label for="user">
@lang('SOLO_SETUP_LBL_DATABASE_USER')
</label>
<input type="text" id="user" name="user" placeholder="@lang('SOLO_SETUP_LBL_DATABASE_USER')" value="{{ $config->get('dbuser') }}">
<p class="akeeba-help-text">
@lang('SOLO_SETUP_LBL_DATABASE_USER_HELP')
</p>
</div>
<div class="akeeba-form-group">
<label for="pass">
@lang('SOLO_SETUP_LBL_DATABASE_PASS')
</label>
<input type="password" id="pass" name="pass" placeholder="@lang('SOLO_SETUP_LBL_DATABASE_PASS')" value="{{ $config->get('dbpass') }}">
<p class="akeeba-help-text">
@lang('SOLO_SETUP_LBL_DATABASE_PASS_HELP')
</p>
</div>
<div class="akeeba-form-group">
<label for="name">
@lang('SOLO_SETUP_LBL_DATABASE_NAME')
</label>
<input type="text" id="name" name="name" placeholder="@lang('SOLO_SETUP_LBL_DATABASE_NAME')" value="{{ $config->get('dbname') }}">
<p class="akeeba-help-text">
@lang('SOLO_SETUP_LBL_DATABASE_NAME_HELP')
</p>
</div>
<div class="akeeba-form-group">
<label for="prefix">
@lang('SOLO_SETUP_LBL_DATABASE_PREFIX')
</label>
<input type="text" id="prefix" name="prefix" placeholder="@lang('SOLO_SETUP_LBL_DATABASE_PREFIX')" value="{{ $config->get('prefix') }}">
<p class="akeeba-help-text">
@lang('SOLO_SETUP_LBL_DATABASE_PREFIX_HELP')
</p>
</div>