Файл: modules/foto/inc/gallery_form.php
Строк: 63
<?php
/* Мод "Фотоальбомы"
* Версия v0.0.1
* Дата последнего редактирования 27.11.2014
* Двиг DCMS Special
* Модифицировал densnet
* Файл gallery_form.php
* Описание: выводит информацию
*/
if (isset($user) && $user['id'] == $ank['id']) {
if (isset($_GET['act']) && $_GET['act'] == 'create') {
$new_gallery_access = 'all';
echo "<div class = 'blok_text'>";
echo "Новый альбом";
echo "<span style = 'float:right;' id = 'hide'>";
echo "<a href = '?' title = 'Закрыть'>" . img16('closed.png') . "</a>";
echo "</span>";
echo "</div>";
echo "<form class = 'razd' name = 'new' action = '?act=create&ok&page=$page' method = 'post'>";
echo '<b>Название альбома</b><br />';
echo "<div class = 'inputs'>";
echo "<input type = 'text' name = 'name' value = '' /><br />";
echo "<div class = 'input-icon'>" . img16('pen.png') . "</div>";
echo "</div>";
echo '<b>Описание</b><br />';
echo "<textarea name = 'opis'></textarea><br />";
echo "<b>Давать доступ</b><br />";
echo "<label><input type = 'radio' name = 'access' value = 'all'" . ($new_gallery_access == 'all' ? " checked = 'checked'" : null) . "/>" . img16('globe.png') . " Всем<br /></label>";
echo "<label><input type = 'radio' name = 'access' value = 'auth'" . ($new_gallery_access == 'auth' ? " checked = 'checked'" : null) . "/>" . img16('001.png') . " Только авторизованным<br /></label>";
echo "<label><input type = 'radio' name = 'access' value = 'only_me'" . ($new_gallery_access == 'only_me' ? " checked = 'checked'" : null) . "/>" . img16('lock.png') . " Только мне<br /></label>";
echo "<label><input type = 'radio' name = 'access' value = 'friends'" . ($new_gallery_access == 'friends' ? " checked = 'checked'" : null) . "/>" . img16('users.png') . " Только друзьям<br /></label>";
echo "<label><input type = 'radio' name = 'access' value = 'pass'" . ($new_gallery_access == 'pass' ? " checked = 'checked'" : null) . "/>" . img16('key.png') . " Только по паролю <br />";
echo "<div class = 'inputs'>";
echo "<input name = 'password' size = '16' maxlength = '16' type = 'text' value = ''/><div class = 'input-icon'>" . img16('key.png') . "</div></div></label>";
echo "<button class = 'button sign-ins'>Добавить</button>";
echo "</form>";
require_once H . 'sys/inc/tfoot.php';
exit();
}
}