Файл: modules/foto/inc/gallery_form.php
Строк: 70
<?php
/* DCMS S (Special)
* Версия файла 0.0.1
* Дата последнего редактирования 12.11.2015
* Модифицировал densnet
*/
if (isset($user) && $user['id'] == $ank['id']) {
if (isset($_GET['act']) && $_GET['act'] == 'create') {
$new_gallery_access = 'all';
echo "<div class='panel panel-default'>";
echo "<div class='panel-heading'>Новый альбом <a style = 'float:right;' href='?' title='Закрыть'><span class='fa fa-times'></span></a></div>";
echo "<div class='panel-body'>";
echo "<form name = 'new' action = '?act=create&ok&page=$page' method = 'post'>";
echo '<b>Название альбома</b><br />';
echo "<input class='form-control' type = 'text' name = 'name' value = '' /><br />";
echo '<b>Описание</b><br />';
echo "<textarea name='opis' class='form-control' rows='3'></textarea><br />";
echo "<b>Доступ:</b><br />n";
echo "<div class='radio'>";
echo "<label><input type='radio' name='access' value='all'" . ($new_gallery_access == 'all' ? " checked='checked'" : null) . "/><span class='fa fa-globe'></span> Всем</label><br />";
echo "<label><input type='radio' name='access' value='only_me'" . ($new_gallery_access == 'only_me' ? " checked='checked'" : null) . "/><span class='fa fa-lock'></span> Только мне</label><br />";
echo "<label><input type='radio' name='access' value='auth'" . ($new_gallery_access == 'auth' ? " checked='checked'" : null) . "/><span class='fa fa-user'></span> Только авторизованным</label><br />";
echo "<label><input type='radio' name='access' value='friends'" . ($new_gallery_access == 'friends' ? " checked='checked'" : null) . "/><span class='fa fa-users'></span> Только друзьям</label><br />";
echo "<label><input type='radio' name='access' value='pass'" . ($new_gallery_access == 'pass' ? " checked='checked'" : null) . "/><span class='fa fa-key'></span> Только по паролю</label><br />";
echo "</div>";
echo '<div class="col-xs-5">';
echo "<input class='form-control' name='password' size='16' maxlength='16' type='text' value='" . htmlspecialchars($user['anketa_password']) . "' />";
echo "</div><br /><br />";
echo "<button class = 'btn btn-success'>Добавить</button>";
echo "</form>";
echo "</div></div>";
require_once H . 'sys/inc/tfoot.php';
exit();
} else {
echo "<div class = 'comm'><a href = '" . DIR_FOTO . "$ank[id]/?act=create'><span class='fa fa-plus'></span> Новый альбом</a></div>";
}
}