| Server IP : 180.180.241.3 / Your IP : 216.73.216.35 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/AppServ/www/news/templates/beez/html/com_weblinks/weblink/ |
Upload File : |
<?php // @version $Id: form.php 11917 2009-05-29 19:37:05Z ian $
defined('_JEXEC') or die('Restricted access');
?>
<?php if($this->params->get('show_page_title',1)) : ?>
<h2 class="componentheading<?php echo $this->escape($this->params->get('pageclass_sfx')) ?>">
<?php echo $this->escape($this->params->get('page_title')) ?>
</h2>
<?php endif; ?>
<script type="text/javascript">
//<![CDATA[
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 echo $this->action ?>" method="post" name="adminForm" class="editor" id="adminForm">
<fieldset class="publishing">
<legend><?php echo JText::_( 'Submit A Web Link' );?></legend>
<div>
<label for="jformtitle"><?php echo JText::_( 'Name' ); ?>:</label>
<input class="inputbox" type="text" id="jformtitle" name="jform[title]" size="50" maxlength="250" value="<?php echo $this->escape($this->weblink->title);?>" />
</div>
<div>
<label for="jformcatid"><?php echo JText::_( 'Category' ); ?>:</label>
<?php echo $this->lists['catid']; ?>
</div>
<div>
<label for="jformurl"><?php echo JText::_( 'URL' ); ?>:</label>
<input class="inputbox" type="text" id="jformurl" name="jform[url]" value="<?php echo $this->escape($this->weblink->url); ?>" size="50" maxlength="250" />
</div>
<div>
<label for="jformdescription"><?php echo JText::_( 'Description' ); ?>:</label>
<textarea class="inputbox" cols="30" rows="6" id="jformdescription" name="jform[description]" style="width:300px"><?php echo htmlspecialchars( $this->weblink->description, ENT_QUOTES );?></textarea>
</div>
</fieldset>
<fieldset>
<legend><?php echo JText::_( 'Published' );?></legend>
<div>
<label for="jformpublished">
<?php echo JText::_( 'Published' ); ?>:
</label>
<?php echo $this->lists['published']; ?>
</div>
<div><label for="jformordering">
<?php echo JText::_( 'Ordering' ); ?>:
</label>
<?php echo $this->lists['ordering']; ?>
</div>
</fieldset>
<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 (int)$this->weblink->id; ?>" />
<input type="hidden" name="jform[ordering]" value="<?php echo (int)$this->weblink->ordering; ?>" />
<input type="hidden" name="jform[approved]" value="<?php echo $this->weblink->approved; ?>" />
<input type="hidden" name="option" value="com_weblinks" />
<input type="hidden" name="controller" value="weblink" />
<input type="hidden" name="task" value="" />
<?php echo JHTML::_( 'form.token' ); ?>
</form>