default_form.php

来自「Joomla!是一套获得过多个奖项的内容管理系统(Content Managem」· PHP 代码 · 共 85 行

PHP
85
字号
<script language="javascript" type="text/javascript"><!--	function submitbutton3(pressbutton) {		var form = document.adminForm;		// do field validation		if (form.install_directory.value == ""){			alert( "<?php echo JText::_( 'Please select a directory', true ); ?>" );		} else {			form.installtype.value = 'folder';			form.submit();		}	}	function submitbutton4(pressbutton) {		var form = document.adminForm;		// do field validation		if (form.install_url.value == "" || form.install_url.value == "http://"){			alert( "<?php echo JText::_( 'Please enter a URL', true ); ?>" );		} else {			form.installtype.value = 'url';			form.submit();		}	}//--></script><form enctype="multipart/form-data" action="index.php" method="post" name="adminForm">	<?php if ($this->ftp) : ?>		<?php echo $this->loadTemplate('ftp'); ?>	<?php endif; ?>	<table class="adminform">	<tr>		<th colspan="2"><?php echo JText::_( 'Upload Package File' ); ?></th>	</tr>	<tr>		<td width="120">			<label for="install_package"><?php echo JText::_( 'Package File' ); ?>:</label>		</td>		<td>			<input class="input_box" id="install_package" name="install_package" type="file" size="57" />			<input class="button" type="button" value="<?php echo JText::_( 'Upload File' ); ?> &amp; <?php echo JText::_( 'Install' ); ?>" onclick="submitbutton()" />		</td>	</tr>	</table>	<table class="adminform">	<tr>		<th colspan="2"><?php echo JText::_( 'Install from directory' ); ?></th>	</tr>	<tr>		<td width="120">			<label for="install_directory"><?php echo JText::_( 'Install directory' ); ?>:</label>		</td>		<td>			<input type="text" id="install_directory" name="install_directory" class="input_box" size="70" value="<?php echo $this->state->get('install.directory'); ?>" />			<input type="button" class="button" value="<?php echo JText::_( 'Install' ); ?>" onclick="submitbutton3()" />		</td>	</tr>	</table>	<table class="adminform">	<tr>		<th colspan="2"><?php echo JText::_( 'Install from URL' ); ?></th>	</tr>	<tr>		<td width="120">			<label for="install_url"><?php echo JText::_( 'Install URL' ); ?>:</label>		</td>		<td>			<input type="text" id="install_url" name="install_url" class="input_box" size="70" value="http://" />			<input type="button" class="button" value="<?php echo JText::_( 'Install' ); ?>" onclick="submitbutton4()" />		</td>	</tr>	</table>	<input type="hidden" name="type" value="" />	<input type="hidden" name="installtype" value="upload" />	<input type="hidden" name="task" value="doInstall" />	<input type="hidden" name="option" value="com_installer" />	<?php echo JHTML::_( 'form.token' ); ?></form>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?