system: Linux mars.sprixweb.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
<?php /* Smarty version 2.6.19, created on 2019-01-30 11:30:28
compiled from news_add.html */ ?>
<?php if ($this->_tpl_vars['message'] != ""): ?>
<div id="dialog" title="Success">
<p><?php echo $this->_tpl_vars['message']; ?>
</p>
</div>
<?php endif; ?>
<?php if ($this->_tpl_vars['error_message'] != ""): ?>
<div id="dialog" title="Error in Validation">
<?php echo $this->_tpl_vars['error_message']; ?>
</div>
<?php endif; ?>
<?php if (count ( $this->_tpl_vars['errmsg'] ) > 0): ?>
<div id="dialog" title="Error in Validation">
<p>
<?php $_from = $this->_tpl_vars['errmsg']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }$this->_foreach['err'] = array('total' => count($_from), 'iteration' => 0);
if ($this->_foreach['err']['total'] > 0):
foreach ($_from as $this->_tpl_vars['err']):
$this->_foreach['err']['iteration']++;
?>
<?php echo $this->_tpl_vars['err']; ?>
<br>
<?php endforeach; endif; unset($_from); ?>
</p>
</div>
<?php endif; ?>
<div class="grid_9">
<div class="box round first">
<h2>Add Press News</h2>
<div class="block ">
<form name="adduser" class="form-horizontal" role="form" enctype="multipart/form-data" action="?do=news&action=insert" method="post">
<table class="form">
<tr>
<td class="col1">
<label>News Year </label>
</td>
<td class="col02">
<select name="txtyear" class="form-control" >
<option value="2010">2010</option>
<option value="2011">2011</option>
<option value="2012">2012</option>
<option value="2013">2013</option>
<option value="2014">2014</option>
<option value="2015">2015</option>
<option value="2016">2016</option>
</select>
</td>
</tr>
<tr>
<td class="col1">
<label>News Title </label>
</td>
<td class="col02">
<input type="text" name="txtname" class="form-control" placeholder="Enter Title Name" value="<?php echo $this->_tpl_vars['txtname']; ?>
" >
</td>
</tr>
<tr>
<td class="col1">
<label>Description </label>
</td>
<td class="col02">
<textarea name="txtdescription" class="form-control" cols="33" rows="5"><?php echo $this->_tpl_vars['txtdescription']; ?>
</textarea>
</td>
</tr>
<tr>
<td class="col1">
<label>News Date </label>
</td>
<td class="col02">
<input type="text" name="txtdate" class="form-control" placeholder="DD/MM/YYYY" value="<?php echo $this->_tpl_vars['txtdate']; ?>
" >
</td>
</tr>
<tr>
<td class="col1">
<label>Status </label>
</td>
<td class="col02">
<input type="radio" name="txtstatus" value="active" <?php if ($this->_tpl_vars['txtstatus'] == 'active'): ?>checked<?php endif; ?> /> Active
<input type="radio" name="txtstatus" value="suspend" <?php if ($this->_tpl_vars['txtstatus'] == 'suspend'): ?>checked <?php endif; ?> /> Suspend
</td>
</tr>
<tr>
<td class="col1">
<label>Image </label>
</td>
<td class="col02">
<input type="file" name="image" id="fileField"/>
</td>
</tr>
<tr>
<td class="" colspan="5">
<center><button type="submit" class="btn btn-success">Add Photo</button></center>
</td>
</tr>
</table>
</form>
</div>
</div>
</div>
<div class="clear">
</div>