| Current Path : /home/sunflowe/www2/vacancesfloride/_AncienSite/templates/beez/html/com_weblinks/weblinks/ |
| Current File : /home/sunflowe/www2/vacancesfloride/_AncienSite/templates/beez/html/com_weblinks/weblinks/form.php |
<?php // @version $Id: form.php 10498 2008-07-04 00:05:36Z ian $
defined('_JEXEC') or die('Restricted access');
?>
<?php if($this->params->get('show_page_title',1)) : ?>
<h2 class="componentheading<?php echo $this->params->get('pageclass_sfx') ?>">
<?php echo $this->escape($this->params->get('page_title')) ?>
</h2>
<?php endif; ?>
<script type="text/javascript">
function submitbutton(pressbutton)
{
var form = document.adminForm;
if (pressbutton == 'cancel') {
submitform( pressbutton );
return;
}
// do field validation
if (document.getElementById('jformtitle').value == ""){
alert( "<?php echo JText::_( 'Weblink item must have a title', true ); ?>" );
} else if (document.getElementById('jformcatid').value < 1) {
alert( "<?php echo JText::_( 'You must select a category.', true ); ?>" );
} else if (document.getElementById('jformurl').value == ""){
alert( "<?php echo JText::_( 'You must have a url.', true ); ?>" );
} else {
submitform( pressbutton );
}
}
</script>
<form action="<?php JRoute::_('index.php') ?>" method="post" name="adminForm" id="adminForm">
<div class="componentheading">
<?php echo JText::_( 'Submit A Web Link' );?>
</div>
<table cellpadding="4" cellspacing="1" border="10" width="100%">
<tr>
<td width="10%">
<label for="jformtitle">
<?php echo JText::_( 'Name' ); ?>:
</label>
</td>
<td width="80%">
<input class="inputbox" type="text" id="jformtitle" name="jform[title]" size="50" maxlength="250" value="<?php echo $this->escape($this->weblink->title);?>" />
</td>
</tr>
<tr>
<td valign="top">
<label for="jformcatid">
<?php echo JText::_( 'Category' ); ?>:
</label>
</td>
<td>
<?php echo $this->lists['catid']; ?>
</td>
</tr>
<tr>
<td valign="top">
<label for="jformurl">
<?php echo JText::_( 'URL' ); ?>:
</label>
</td>
<td>
<input class="inputbox" type="text" id="jformurl" name="jform[url]" value="<?php echo $this->weblink->url; ?>" size="50" maxlength="250" />
</td>
</tr>
<tr>
<td valign="top">
<label for="jformdescription">
<?php echo JText::_( 'Description' ); ?>:
</label>
</td>
<td>
<textarea class="inputbox" cols="30" rows="6" id="jformdescription" name="jform[description]" style="width:300px"><?php echo htmlspecialchars( $this->weblink->description, ENT_QUOTES );?></textarea>
</td>
</tr>
</table>
<div>
<button type="button" onclick="submitbutton('save')">
<?php echo JText::_('Save') ?>
</button>
<button type="button" onclick="submitbutton('cancel')" />
<?php echo JText::_('Cancel') ?>
</button>
</div>
<input type="hidden" name="jform[id]" value="<?php echo $this->weblink->id; ?>" />
<input type="hidden" name="jform[ordering]" value="<?php echo $this->weblink->ordering; ?>" />
<input type="hidden" name="jform[approved]" value="<?php echo $this->weblink->approved; ?>" />
<input type="hidden" name="option" value="<?php echo $option;?>" />
<input type="hidden" name="controller" value="weblink" />
<input type="hidden" name="task" value="" />
<input type="hidden" name="Returnid" value="<?php echo $this->returnid; ?>" />
<?php echo JHTML::_( 'form.token' ); ?>
</form>