Просмотр файла admin/modules/settings.php

Размер файла: 1.54Kb
<?php
    include '../../engine/includes/start.php';
    
	if (!$creator)
		Core::stop();

	$set_mod = parse_ini_file(H . 'engine/files/data/modules.ini');

    if (isset($_POST['save']))
    {
        $set_mod['from_others'] = isset($_POST['from_others']);
        $set_mod['req_un_file'] = isset($_POST['req_un_file']);
        $set_mod['check_author'] = isset($_POST['check_author']);
        Core::save_settings($set_mod, 'engine/files/data/modules.ini');
    }

    $set['title'] = 'Параметры установки модулей';
    include incDir.'head.php';

    ?>
    <form method = "post">
        <label><input type='checkbox' <?=(!empty($set_mod['from_others']) ? 'checked="checked"':null)?> name='from_others' value='1' /> Устанавливать модули не из официального сайта</label><br />
        <label><input type='checkbox' <?=(!empty($set_mod['req_un_file']) ? 'checked="checked"':null)?> name='req_un_file' value='1' /> Файл удаления (uninstall.php) обязателен для модулей</label><br />
        <label><input type='checkbox' <?=(!empty($set_mod['check_author']) ? 'checked="checked"':null)?> name='check_author' value='1' /> Проверять авторов модулей через Banbase.ru и Gix.su</label><br />
        <input value = "Изменить" name="save" type="submit" />
    </form>
	<a href="/admin/?act=modules"><div class="link">Модули</div></a>
    <a href='/admin/'><div class="link">Админка</div></a>
    <?php
    include incDir.'foot.php';