⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 default.php

📁 Joomla!是一套获得过多个奖项的内容管理系统(Content Management System, CMS)。Joomla!采用PHP+MySQL数据库开发
💻 PHP
字号:
<?php defined('_JEXEC') or die('Restricted access'); ?><?php JHTML::_('behavior.tooltip'); ?><?php	JToolBarHelper::title( JText::_( 'Plugin Manager' ), 'plugin.png' );	JToolBarHelper::publishList();	JToolBarHelper::unpublishList();	JToolBarHelper::editListX();	JToolBarHelper::help( 'screen.plugins' );	$ordering = ($this->lists['order'] == 'p.folder' || $this->lists['order'] == 'p.ordering');	$rows =& $this->items;?><form action="index.php" method="post" name="adminForm"><table>	<tr>		<td align="left" width="100%">			<?php echo JText::_( 'Filter' ); ?>:			<input type="text" name="search" id="search" value="<?php echo $this->lists['search'];?>" class="text_area" onchange="document.adminForm.submit();" />			<button onclick="this.form.submit();"><?php echo JText::_( 'Go' ); ?></button>			<button onclick="document.getElementById('search').value='';this.form.submit();"><?php echo JText::_( 'Reset' ); ?></button>		</td>		<td nowrap="nowrap">			<?php			echo $this->lists['type'];			echo $this->lists['state'];			?>		</td>	</tr></table><table class="adminlist"><thead>	<tr>		<th width="20">			<?php echo JText::_( 'Num' ); ?>		</th>		<th width="20">			<input type="checkbox" name="toggle" value="" onclick="checkAll(<?php echo count( $rows );?>);" />		</th>		<th class="title">			<?php echo JHTML::_('grid.sort',   'Plugin Name', 'p.name', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>		</th>		<th nowrap="nowrap" width="5%">			<?php echo JHTML::_('grid.sort',   'Published', 'p.published', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>		</th>		<th width="8%" nowrap="nowrap">			<?php echo JHTML::_('grid.sort',   'Order', 'p.ordering', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>			<?php if ($ordering) echo JHTML::_('grid.order',  $rows ); ?>		</th>		<th nowrap="nowrap" width="10%">			<?php echo JHTML::_('grid.sort',   'Access', 'groupname', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>		</th>		<th nowrap="nowrap"  width="10%" class="title">			<?php echo JHTML::_('grid.sort',   'Type', 'p.folder', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>		</th>		<th nowrap="nowrap"  width="10%" class="title">			<?php echo JHTML::_('grid.sort',   'File', 'p.element', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>		</th>		<th nowrap="nowrap"  width="1%" class="title">			<?php echo JHTML::_('grid.sort',   'ID', 'p.id', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>		</th>	</tr></thead><tfoot>	<tr>		<td colspan="12">			<?php echo $this->pagination->getListFooter(); ?>		</td>	</tr></tfoot><tbody><?php	$k = 0;	for ($i=0, $n=count( $rows ); $i < $n; $i++) {	$row 	= $rows[$i];	$link = JRoute::_( 'index.php?option=com_plugins&view=plugin&client='. $this->client .'&task=edit&cid[]='. $row->id );	$access 	= JHTML::_('grid.access',   $row, $i );	$checked 	= JHTML::_('grid.checkedout',   $row, $i );	$published 	= JHTML::_('grid.published', $row, $i );?>	<tr class="<?php echo "row$k"; ?>">		<td align="right">			<?php echo $this->pagination->getRowOffset( $i ); ?>		</td>		<td>			<?php echo $checked; ?>		</td>		<td>			<?php			if (  JTable::isCheckedOut($this->user->get ('id'), $row->checked_out ) ) {				echo $row->name;			} else {			?>				<span class="editlinktip hasTip" title="<?php echo JText::_( 'Edit Plugin' );?>::<?php echo $row->name; ?>">				<a href="<?php echo $link; ?>">					<?php echo $row->name; ?></a></span>			<?php } ?>		</td>		<td align="center">			<?php echo $published;?>		</td>		<td class="order">			<span><?php echo $this->pagination->orderUpIcon( $i, ($row->folder == @$rows[$i-1]->folder && $row->ordering > -10000 && $row->ordering < 10000), 'orderup', 'Move Up', $ordering ); ?></span>			<span><?php echo $this->pagination->orderDownIcon( $i, $n, ($row->folder == @$rows[$i+1]->folder && $row->ordering > -10000 && $row->ordering < 10000), 'orderdown', 'Move Down', $ordering ); ?></span>			<?php $disabled = $ordering ?  '' : 'disabled="disabled"'; ?>			<input type="text" name="order[]" size="5" value="<?php echo $row->ordering; ?>"  <?php echo $disabled ?> class="text_area" style="text-align: center" />		</td>		<td align="center">			<?php echo $access;?>		</td>		<td nowrap="nowrap">			<?php echo $row->folder;?>		</td>		<td nowrap="nowrap">			<?php echo $row->element;?>		</td>		<td align="center">			<?php echo $row->id;?>		</td>	</tr>	<?php		$k = 1 - $k;	}	?></tbody></table>	<input type="hidden" name="option" value="com_plugins" />	<input type="hidden" name="task" value="" />	<input type="hidden" name="filter_client" value="<?php echo $this->client;?>" />	<input type="hidden" name="boxchecked" value="0" />	<input type="hidden" name="filter_order" value="<?php echo $this->lists['order']; ?>" />	<input type="hidden" name="filter_order_Dir" value="<?php echo $this->lists['order_Dir']; ?>" />	<?php echo JHTML::_( 'form.token' ); ?></form>

⌨️ 快捷键说明

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