📄 form.php
字号:
<?php defined('_JEXEC') or die('Restricted access'); ?>
<script language="javascript" 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 echo 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="0" 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; ?>" />
<input type="hidden" name="<?php echo JUtility::getToken(); ?>" value="1" />
</form>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -