PATH:
home
/
vcomplcotr
/
www
/
wp-content
/
plugins
/
akeebabackupwp
/
app
/
Solo
/
ViewTemplates
/
Sysconfig
<?php /** * @package solo * @copyright Copyright (c)2014-2025 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ defined('_AKEEBA') or die(); /** @var \Solo\View\Sysconfig\Html $this */ $config = $this->getContainer()->appConfig; /** * Remember to update wpcli/Command/Sysconfig.php in the WordPress application whenever this file changes. */ ?> <div class="akeeba-form-group"> <label for="mail_online"> @lang('SOLO_SYSCONFIG_LBL_EMAIL_ONLINE') </label> <div class="akeeba-toggle"> @html('fefselect.booleanList', 'mail_online', ['forToggle' => 1, 'colorBoolean' => 1], $config->get('mail.online', 1)) </div> <p class="akeeba-help-text"> @lang('SOLO_SYSCONFIG_LBL_EMAIL_ONLINE_HELP') </p> </div> <div class="akeeba-form-group" {{ $this->showOn('mail_online:1') }}> <label for="options_mail_mailer"> @lang('SOLO_SYSCONFIG_LBL_EMAIL_MAILER') </label> {{ $this->getContainer()->html->setup->mailerSelect($config->get('mail.mailer'), 'mail_mailer') }} <p class="akeeba-help-text"> @lang('SOLO_SYSCONFIG_LBL_EMAIL_MAILER_HELP') </p> </div> <div class="akeeba-form-group" {{ $this->showOn('mail_online:1') }}> <label for="mail_mailfrom"> @lang('SOLO_SYSCONFIG_LBL_EMAIL_MAILFROM') </label> <input type="email" name="mail_mailfrom" id="mail_mailfrom" value="{{ $config->get('mail.mailfrom') }}"> <p class="akeeba-help-text"> @lang('SOLO_SYSCONFIG_LBL_EMAIL_MAILFROM_HELP') </p> </div> <div class="akeeba-form-group" {{ $this->showOn('mail_online:1') }}> <label for="mail_fromname"> @lang('SOLO_SYSCONFIG_LBL_EMAIL_FROMNAME') </label> <input type="text" name="mail_fromname" id="mail_fromname" value="{{ $config->get('mail.fromname') }}"> <p class="akeeba-help-text"> @lang('SOLO_SYSCONFIG_LBL_EMAIL_FROMNAME_HELP') </p> </div> <div class="akeeba-form-group" {{ $this->showOn('mail_online:1[AND]mail_mailer:smtp') }}> <label for="mail_smtphost"> @lang('SOLO_SYSCONFIG_LBL_EMAIL_SMTPHOST') </label> <input type="text" name="mail_smtphost" id="mail_smtphost" value="{{ $config->get('mail.smtphost', 'localhost') }}"> <p class="akeeba-help-text"> @lang('SOLO_SYSCONFIG_LBL_EMAIL_SMTPHOST_HELP') </p> </div> <div class="akeeba-form-group" {{ $this->showOn('mail_online:1[AND]mail_mailer:smtp') }}> <label for="mail_smtpport"> @lang('SOLO_SYSCONFIG_LBL_EMAIL_SMTPPORT') </label> <input type="number" name="mail_smtpport" id="mail_smtpport" value="{{ $config->get('mail.smtpport', 25) }}"> <p class="akeeba-help-text"> @lang('SOLO_SYSCONFIG_LBL_EMAIL_SMTPPORT_HELP') </p> </div> <div class="akeeba-form-group" {{ $this->showOn('mail_online:1[AND]mail_mailer:smtp') }}> <label for="mail_smtpauth"> @lang('SOLO_SYSCONFIG_LBL_EMAIL_SMTPAUTH') </label> <div class="akeeba-toggle"> @html('fefselect.booleanList', 'mail_smtpauth', array('forToggle' => 1, 'colorBoolean' => 1), $config->get('mail.smtpauth', 1)) </div> <p class="akeeba-help-text"> @lang('SOLO_SYSCONFIG_LBL_EMAIL_SMTPAUTH_HELP') </p> </div> <div class="akeeba-form-group" {{ $this->showOn('mail_online:1[AND]mail_mailer:smtp[AND]mail_smtpauth:1') }}> <label for="mail_smtpsecure"> @lang('SOLO_SYSCONFIG_LBL_EMAIL_SMTPSECURE') </label> {{ $this->getContainer()->html->setup->smtpSecureSelect($config->get('mail.smtpsecure'), 'mail_smtpsecure') }} <p class="akeeba-help-text"> @lang('SOLO_SYSCONFIG_LBL_EMAIL_SMTPSECURE_HELP') </p> </div> <div class="akeeba-form-group" {{ $this->showOn('mail_online:1[AND]mail_mailer:smtp[AND]mail_smtpauth:1') }}> <label for="mail_smtpuser"> @lang('SOLO_SYSCONFIG_LBL_EMAIL_SMTPUSER') </label> <input type="text" name="mail_smtpuser" id="mail_smtpuser" value="{{ $config->get('mail.smtpuser', '') }}"> <p class="akeeba-help-text"> @lang('SOLO_SYSCONFIG_LBL_EMAIL_SMTPUSER_HELP') </p> </div> <div class="akeeba-form-group" {{ $this->showOn('mail_online:1[AND]mail_mailer:smtp[AND]mail_smtpauth:1') }}> <label for="mail_smtppass"> @lang('SOLO_SYSCONFIG_LBL_EMAIL_SMTPPASS') </label> <input type="password" name="mail_smtppass" id="mail_smtppass" value="{{ $config->get('mail.smtppass', '') }}"> <p class="akeeba-help-text"> @lang('SOLO_SYSCONFIG_LBL_EMAIL_SMTPPASS_HELP') </p> </div> <div class="akeeba-form-group--pull-right"> <div class="akeeba-form-group--actions"> <button class="akeeba-btn--grey" id="comAkeebaSysconfigTestEmail"> <span class="akion-email"></span> @lang('SOLO_SYSCONFIG_LBL_SEND_TEST_EMAIL') </button> </div> </div>
[+]
..
[-] push.blade.php
[edit]
[-] publicapi.blade.php
[edit]
[-] default.blade.php
[edit]
[-] update.blade.php
[edit]
[-] appsetup.blade.php
[edit]
[-] backupchecks.blade.php
[edit]
[-] oauth2.blade.php
[edit]
[-] backuponupdate.blade.php
[edit]
[-] email.blade.php
[edit]
[-] database.blade.php
[edit]