Файл: adultscript-2.0.3-pro/files/admin/templates/default/menu_edit.tpl.php
Строк: 46
<?php defined('_VALID') or die('Restricted Access!'); ?>
<?php echo $this->fetch('errors'); ?>
<?php echo $this->fetch('messages'); ?>
<?php echo $this->fetch('warnings'); ?>
<div id="container" class="clearfix">
<div id="page">
<?php echo $this->fetch('main_menu'); ?>
<div class="content clearfix">
<?php echo $this->fetch('menu_menu'); ?>
<form name="menu-add-form" id="menu-add-form" method="post" action="<?php echo ADMIN_URL; ?>/index.php?q=menu/edit&id=<?php echo $this->item['menu_id']; ?>">
<fieldset>
<legend>Menu Properties</legend>
<div class="required">
<label for="name">Name</label>
<input name="name" type="text" id="name" class="large" maxlength="99" value="<?php echo e($this->item['name']); ?>" />
</div>
<div class="optional">
<label for="title">Title</label>
<input name="title" type="text" id="title" class="mega" maxlength="255" value="<?php echo e($this->item['title']); ?>" />
</div>
<div class="required">
<label for="status">Status</label>
<input name="status" type="radio" id="status" class="radio" value="1"<?php if ($this->item['status'] == '1'): ?> checked="checked"<?php endif; ?> /> Active
<input name="status" type="radio" class="radio" value="0"<?php if ($this->item['status'] == '0'): ?> checked="checked"<?php endif; ?> /> Suspended
</div>
</fieldset>
<div class="submit">
<input name="submit_edit_menu" type="submit" id="submit_edit_menu" class="button butDef" value=" Update Menu " />
</div>
</form>
</div>
</div>
</div>