📄 form.php
字号:
<?php // @version $Id: form.php 11215 2008-10-26 02:25:51Z 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"> //<![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->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 $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="com_weblinks" /> <input type="hidden" name="controller" value="weblink" /> <input type="hidden" name="task" value="" /> <?php echo JHTML::_( 'form.token' ); ?></form>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -