Файл: protected/views/config/index.php
Строк: 194
<?php
$this->pageTitle = 'Настройки';
?>
<div class="menu">
<?php $this->widget ('validationErrors', array ('model' => $model)) ?>
<form action="<?php echo $this->createUrl ('') ?>" method="POST">
Заголовок главной страницы:<br />
<input type="text" name="config[index_title]" value="<?php echo CHtml::encode(Yii::app ()->config->index_title) ?>" /><br />
Ключевые слова:<br />
<input type="text" name="config[index_keywords]" value="<?php echo CHtml::encode(Yii::app ()->config->index_keywords) ?>" /><br />
Описание:<br />
<input type="text" name="config[index_description]" value="<?php echo CHtml::encode(Yii::app ()->config->index_description) ?>" /><br />
<hr />
<div class="mini_el">Выводить описание категорий?<br />
<input type="radio" name="config[print_about_category]" value="1"<?php if (Yii::app ()->config->print_about_category == 1): ?> checked<?php endif; ?> /> Да
<input type="radio" name="config[print_about_category]" value="0"<?php if (Yii::app ()->config->print_about_category == 0): ?> checked<?php endif; ?> /> Нет<br />
</div>
<div class="mini_el">Сообщать о непрочитанных комментариях?<br />
<input type="radio" name="config[notify_of_new_comments]" value="1"<?php if (Yii::app ()->config->notify_of_new_comments == 1): ?> checked<?php endif; ?> /> Да
<input type="radio" name="config[notify_of_new_comments]" value="0"<?php if (Yii::app ()->config->notify_of_new_comments == 0): ?> checked<?php endif; ?> /> Нет<br />
</div>
<?php/*
<div class="mini_el">Определять автоматически версию сайта (Wap/Web)?<br />
<input type="radio" name="config[auto_determine_site_version]" value="1"<?php if (Yii::app ()->config->auto_determine_site_version == 1): ?> checked<?php endif; ?> /> Да
<input type="radio" name="config[auto_determine_site_version]" value="0"<?php if (Yii::app ()->config->auto_determine_site_version == 0): ?> checked<?php endif; ?> /> Нет<br />
</div>
*/
?>
<hr />
Дизайн:<br />
<select name="config[design]">
<?php foreach ($designArray as $category): ?>
<?php if ($category != '.' && $category != '..'): ?>
<option value="<?php echo CHtml::encode ($category) ?>"<?php if ($category == Yii::app ()->config->design): ?> selected<?php endif; ?> ><?php echo CHtml::encode ($category) ?></option>
<?php endif; ?>
<?php endforeach; ?>
</select><br />
Копирайт:<br />
<input type="text" name="config[copyright]" value="<?php echo CHtml::encode(Yii::app ()->config->copyright) ?>" /><br />
Текст в конце заголовков всех страниц:<br />
<input type="text" name="config[title_postfix]" value="<?php echo CHtml::encode(Yii::app ()->config->title_postfix) ?>" /><br />
<hr />
Заголовок RSS ленты:<br />
<input type="text" name="config[rss_title]" value="<?php echo CHtml::encode(Yii::app ()->config->rss_title) ?>" /><br />
Краткое описание ленты:<br />
<textarea name="config[rss_description]" <?php echo Config::getColsRows () ?>><?php echo CHtml::encode(Yii::app ()->config->rss_description) ?></textarea><br />
Число элементов в ленте:<br />
<input type="text" name="config[rss_item_count]" size="2" value="<?php echo CHtml::encode(Yii::app ()->config->rss_item_count) ?>" /><br />
<div class="mini_el">Что отдавать в RSS?<br />
<input type="radio" name="config[give_in_rss]" value="info"<?php if (Yii::app ()->config->give_in_rss == 'info'): ?> checked<?php endif; ?> /> Аннотацию
<input type="radio" name="config[give_in_rss]" value="cut"<?php if (Yii::app ()->config->give_in_rss == 'cut'): ?> checked<?php endif; ?> /> Кат<br />
</div>
<hr />
Количество последних статей на страницу на главной:<br />
<input type="text" name="config[page_count_last_posts]" size="2" value="<?php echo CHtml::encode(Yii::app ()->config->page_count_last_posts) ?>" /><br />
Статей на страницу в категориях и черновиках:<br />
<input type="text" name="config[page_count_categories]" size="2" value="<?php echo CHtml::encode(Yii::app ()->config->page_count_categories) ?>" /><br />
Комментариев на страницу:<br />
<input type="text" name="config[page_count_comments]" size="2" value="<?php echo CHtml::encode(Yii::app ()->config->page_count_comments) ?>" /><br />
Количество тегов в облаке на главной:<br />
<input type="text" name="config[tags_cloud_links_count]" size="2" value="<?php echo CHtml::encode(Yii::app ()->config->tags_cloud_links_count) ?>" /><br />
<hr />
Количество символов в строке во всех полях textarea на сайте:<br />
<input type="text" name="config[textarea_cols]" size="2" value="<?php echo (int)Yii::app ()->config->textarea_cols ?>" /><br />
Количество строк во всех полях textarea на сайте:<br />
<input type="text" name="config[textarea_rows]" size="2" value="<?php echo (int)Yii::app ()->config->textarea_rows ?>" /><br />
<input type="submit" value="Сохранить" /><br /><br />
<img src="<?php echo Yii::app ()->theme->baseUrl ?>/icons/i.png" alt="i" /> <a href="<?php echo $this->createUrl ('returnStandartConfigs') ?>">Вернуть стандартные настройки</a><br />
<img src="<?php echo Yii::app ()->theme->baseUrl ?>/icons/i.png" alt="i" /> <a href="<?php echo $this->createUrl ('//user/changeUserPass') ?>">Сменить пароль</a>
</form>
</div>