ACC SHELL

Path : /var/lib/named/var/lib/named/proc/self/root/srv/www/vhosts/tsisystem/app/views/configs/
File Upload :
Current File : //var/lib/named/var/lib/named/proc/self/root/srv/www/vhosts/tsisystem/app/views/configs/edit.thtml

<h1>Edit config</h1>
<form action="<?php echo $html->url('/configs/edit/'.$configs['Config']['id'].''); ?>" method="post">
<div class="optional"> 
	<label for="config_conf_name">Conf Name</label>
 	<?php echo $html->input('Config/conf_name', array('id' => 'config_conf_name', 'size' => '40', 'value' => $configs['Config']['conf_name'], )) ?>
	<?php echo $html->tagErrorMsg('Config/conf_name', 'Error message for conf_name goes here.') ?>
</div>
<div class="optional"> 
	<label for="config_conf_value">Conf Value</label>
 	<?php echo $html->textarea('Config/conf_value', array('id' => 'config_conf_value', 'cols' => '60', 'rows' => '10', 'value' => $configs['Config']['conf_value'], )) ?>
	<?php echo $html->tagErrorMsg('Config/conf_value', 'Error message for conf_value goes here.') ?>
</div>
<div class="optional"> 
	<label for="config_conf_type">Conf Type</label>
 	<?php echo $html->input('Config/conf_type', array('id' => 'config_conf_type', 'size' => '40', 'value' => $configs['Config']['conf_type'], )) ?>
	<?php echo $html->tagErrorMsg('Config/conf_type', 'Error message for conf_type goes here.') ?>
</div>
<?php echo $html->hidden('Config/id', array('value' => $configs['Config']['id']))?><div class="submit"><input type="submit" value="Save" /></div>
</form>
<ul>
	<li><?php echo $html->link('List configs', '/configs/index')?></li>
</ul>

ACC SHELL 2018