Файл: Space race/admin/page/general-options.php
Строк: 294
<?php include_once('settings.php'); ?>
<fieldset>
<legend>Основные настройки</legend>
<div class="form-group">
<label class="control-label" for="admin_email">Email администратора <a href="#" data-rel="tooltip" tabindex="99" title="этот Email будет использоваться для рассылок и уведомлений"><i class="glyphicon glyphicon-question-sign"></i></a></label>
<div class="controls">
<input type="email" class="form-control input-xlarge" id="admin_email" name="admin_email" value="<?php echo $settings->getOption('admin_email'); ?>">
</div>
</div>
<div class="form-group">
<label class="control-label" for="site_address">Адрес сайта <a href="#" data-rel="tooltip" tabindex="99" title="адрес сайта в конце"><i class="glyphicon glyphicon-question-sign"></i></a></label>
<div class="controls">
<input type="url" class="form-control input-xlarge" id="site_address" name="site_address" value="<?php echo $settings->getOption('site_address'); ?>">
</div>
</div>
<div class="form-group">
<label class="control-label" for="default_session">Время сессии <a href="#" data-rel="tooltip" tabindex="99" title="Время в минутах, в течении которого пользователь остается авторизованным. Если 0 - после закрытия браузера авторизоваться нужно заново"><i class="glyphicon glyphicon-question-sign"></i></a></label>
<div class="controls">
<input type="number" min=0 class="form-control input-mini" id="default_session" name="default_session" value="<?php echo $settings->getOption('default_session'); ?>" placeholder="0">
</div>
</div>
<div class="form-group">
<label class="control-label" for="default-level">Уровень по умолчанию <a href="#" data-rel="tooltip" tabindex="99" title="В какую группу помещать новых пользователей"><i class="glyphicon glyphicon-question-sign"></i></a></label>
<div class="controls">
<?php $settings->returnLevels('default-level'); ?>
</div>
</div>
<div class="form-group">
<label class="control-label" for="email-as-username-enable">Настройки сайта</label>
<div class="controls checkbox">
<label class="">
<input type="checkbox" class="" id="custom-avatar-enable" name="custom-avatar-enable" <?php echo $settings->getOption('custom-avatar-enable', true); ?>>
Разрешить загрузку аватар
</label><br>
<label class="">
<input type="checkbox" class="" id="email-as-username-enable" name=email-as-username-enable <?php echo $settings->getOption('email-as-username-enable', true); ?>>
Использовать email как логин
</label><br>
<label class="">
<input type="checkbox" class="" id="disable-registrations-enable" name="disable-registrations-enable" <?php echo $settings->getOption('disable-registrations-enable', true); ?>>
Запретить регистрацию
</label><br>
<label class="">
<input type="checkbox" class="" id="disable-logins-enable" name="disable-logins-enable" <?php echo $settings->getOption('disable-logins-enable', true); ?>>
Запретить авторизацию
</label>
</div>
</div>
<div class="form-group">
<label class="control-label" for="user-activation-enable">Для новых пользователей</label>
<div class="controls checkbox">
<label class="">
<input type="checkbox" class="" id="user-activation-enable" name="user-activation-enable" <?php echo $settings->getOption('user-activation-enable', true); ?>>
Подтверждать email
</label><br>
<label class="">
<input type="checkbox" class="" id="email-welcome-disable" name="email-welcome-disable" <?php echo $settings->getOption('email-welcome-disable', true); ?>>
Не отправлять приветствие
</label><br>
<label class="">
<input type="checkbox" class=" collapsed" id="notify-new-user-enable" name="notify-new-user-enable" <?php echo $settings->getOption('notify-new-user-enable', true); ?>>
Уведомлять остальных членов группы о новом пользователе
</label>
<div class="hidden">
<label class="textarea">
<?php $settings->returnLevels('notify-new-users'); ?>
</label>
</div>
</div>
</div>
<div class="form-group">
<label class="control-label" for="restrict-signups-by-email">Ограничение почтовых доменов <a href="#" data-rel="tooltip" tabindex="99" title="Запретить регистрацию с доменов. Например mail.ru"><i class="glyphicon glyphicon-question-sign"></i></a></label>
<div class="controls">
<select multiple="true" class="input-large" id="restrict-signups-by-email" name="restrict-signups-by-email" data-placeholder="Например: mail.ru, gmail.com" value="<?php echo $settings->get_domains(); ?>"></select>
</div>
</div>
<div class="form-group">
<label class="control-label" for="pw-encrypt-force-enable">Шифрование пароля</label>
<div class="controls checkbox">
<label class="">
<input type="checkbox" class="" id="pw-encrypt-force-enable" name="pw-encrypt-force-enable" <?php echo $settings->getOption('pw-encrypt-force-enable', true); ?>>
Заставить пользователя обновить пароль, если не использован выбранный метод шифрования
</label>
<?php $pw_encryption = $settings->getOption('pw-encryption'); ?>
<?php $e = array('MD5', 'SHA256'); ?>
<?php foreach ($e as $value) : ?>
<label class="radio">
<input type="radio" name="pw-encryption" id="<?php echo $value; ?>" value="<?php echo $value; ?>" <?php if ($pw_encryption == $value) echo 'checked'; ?> > <?php echo $value; ?>
</label>
<?php endforeach; ?>
</div>
</div>
<legend>Редирект</legend><br>
<div class="form-group">
<label class="control-label" for="guest-redirect">Гости <a href="#" data-rel="tooltip" tabindex="99" title="Куда перенаправить гостей при попытке доступа к защищенным страницам"><i class="glyphicon glyphicon-question-sign"></i></a></label>
<div class="controls">
<input type="url" class="form-control input-xlarge" id="guest-redirect" name="guest-redirect" placeholder="<?php echo SITE_PATH . 'login.php'; ?>" value="<?php echo $settings->getOption('guest-redirect'); ?>">
<p class="help-block"><?php _e('По умолчанию: <code>login.php?e=1</code>'); ?></p>
</div>
</div>
<div class="form-group">
<label class="control-label" for="new-user-redirect">Новые пользователи <a href="#" data-rel="tooltip" tabindex="99" title="Куда отправлять новых пользователей после активации учетной записи"><i class="glyphicon glyphicon-question-sign"></i></a></label>
<div class="controls">
<input type="url" class="form-control input-xlarge" id="new-user-redirect" name="new-user-redirect" placeholder="<?php echo SITE_PATH . 'profile.php'; ?>" value="<?php echo $settings->getOption('new-user-redirect'); ?>">
<p class="help-block"><?php _e('По умолчанию: <code>profile.php</code>'); ?></p>
</div>
</div>
<div class="form-group">
<label class="control-label" for="signout-redirect-referrer-enable">При выходе <a href="#" data-rel="tooltip" tabindex="99" title="Кгда пользователь нажал на ссылку ВЫХОД"><i class="glyphicon glyphicon-question-sign"></i></a></label>
<div class="controls checkbox">
<label class="">
<input type="checkbox" class="uncollapsed" id="signout-redirect-referrer-enable" name="signout-redirect-referrer-enable" <?php echo $settings->getOption('signout-redirect-referrer-enable', true); ?>>
Отправить на предыдущую страницу
</label>
<input type="url" class="form-control input-xlarge" id="signout-redirect-url" name="signout-redirect-url" placeholder="<?php echo SITE_PATH; ?>" value="<?php echo $settings->getOption('signout-redirect-url'); ?>">
</div>
</div>
<div class="form-group">
<label class="control-label" for="signin-redirect-referrer-enable">При входе <a href="#" data-rel="tooltip" tabindex="99" title="Куда направлять пользователя после авторизации"><i class="glyphicon glyphicon-question-sign"></i></a></label>
<div class="controls checkbox">
<label class="">
<input type="checkbox" class="uncollapsed" id="signin-redirect-referrer-enable" name="signin-redirect-referrer-enable" <?php echo $settings->getOption('signin-redirect-referrer-enable', true); ?>>
Отправить на предыдущую страницу
</label>
<input type="url" class="form-control input-xlarge" id="signin-redirect-url" name="signin-redirect-url" placeholder="<?php echo SITE_PATH; ?>" value="<?php echo $settings->getOption('signin-redirect-url'); ?>">
</div>
</div>
<p class="help-block">Перенаправления могут быть установлены на странице редактирования групп и будут переопределять параметры, указанные выше.</p>
<input type="hidden" name="general-options-form" value="1">
</fieldset>
<script>
$(function(){
$("#restrict-signups-by-email").select2({
tags: [<?php echo $settings->get_domains($json = true); ?>],
tokenSeparators: [",", " "]
});
});
</script>