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

📄 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::_( 'User Manager' ), 'user.png' );	JToolBarHelper::custom( 'logout', 'cancel.png', 'cancel_f2.png', 'Logout' );	JToolBarHelper::deleteList();	JToolBarHelper::editListX();	JToolBarHelper::addNewX();	JToolBarHelper::help( 'screen.users' );?><form action="index.php?option=com_users" method="post" name="adminForm">	<table>		<tr>			<td 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.getElementById('filter_type').value='0';this.form.getElementById('filter_logged').value='0';this.form.submit();"><?php echo JText::_( 'Reset' ); ?></button>			</td>			<td nowrap="nowrap">				<?php echo $this->lists['type'];?>				<?php echo $this->lists['logged'];?>			</td>		</tr>	</table>	<table class="adminlist" cellpadding="1">		<thead>			<tr>				<th width="2%" class="title">					<?php echo JText::_( 'NUM' ); ?>				</th>				<th width="3%" class="title">					<input type="checkbox" name="toggle" value="" onclick="checkAll(<?php echo count($this->items); ?>);" />				</th>				<th class="title">					<?php echo JHTML::_('grid.sort',   'Name', 'a.name', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>				</th>				<th width="15%" class="title" >					<?php echo JHTML::_('grid.sort',   'Username', 'a.username', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>				</th>				<th width="5%" class="title" nowrap="nowrap">					<?php echo JText::_( 'Logged In' ); ?>				</th>				<th width="5%" class="title" nowrap="nowrap">					<?php echo JHTML::_('grid.sort',   'Enabled', 'a.block', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>				</th>				<th width="15%" class="title">					<?php echo JHTML::_('grid.sort',   'Group', 'groupname', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>				</th>				<th width="15%" class="title">					<?php echo JHTML::_('grid.sort',   'E-Mail', 'a.email', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>				</th>				<th width="10%" class="title">					<?php echo JHTML::_('grid.sort',   'Last Visit', 'a.lastvisitDate', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>				</th>				<th width="1%" class="title" nowrap="nowrap">					<?php echo JHTML::_('grid.sort',   'ID', 'a.id', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>				</th>			</tr>		</thead>		<tfoot>			<tr>				<td colspan="10">					<?php echo $this->pagination->getListFooter(); ?>				</td>			</tr>		</tfoot>		<tbody>		<?php			$k = 0;			for ($i=0, $n=count( $this->items ); $i < $n; $i++)			{				$row 	=& $this->items[$i];				$img 	= $row->block ? 'publish_x.png' : 'tick.png';				$task 	= $row->block ? 'unblock' : 'block';				$alt 	= $row->block ? JText::_( 'Enabled' ) : JText::_( 'Blocked' );				$link 	= 'index.php?option=com_users&amp;view=user&amp;task=edit&amp;cid[]='. $row->id. '';				if ($row->lastvisitDate == "0000-00-00 00:00:00") {					$lvisit = JText::_( 'Never' );				} else {					$lvisit	= JHTML::_('date', $row->lastvisitDate, '%Y-%m-%d %H:%M:%S');				}			?>			<tr class="<?php echo "row$k"; ?>">				<td>					<?php echo $i+1+$this->pagination->limitstart;?>				</td>				<td>					<?php echo JHTML::_('grid.id', $i, $row->id ); ?>				</td>				<td>					<a href="<?php echo $link; ?>">						<?php echo $row->name; ?></a>				</td>				<td>					<?php echo $row->username; ?>				</td>				<td align="center">					<?php echo $row->loggedin ? '<img src="images/tick.png" width="16" height="16" border="0" alt="" />': ''; ?>				</td>				<td align="center">					<a href="javascript:void(0);" onclick="return listItemTask('cb<?php echo $i;?>','<?php echo $task;?>')">						<img src="images/<?php echo $img;?>" width="16" height="16" border="0" alt="<?php echo $alt; ?>" /></a>				</td>				<td>					<?php echo JText::_( $row->groupname ); ?>				</td>				<td>					<a href="mailto:<?php echo $row->email; ?>">						<?php echo $row->email; ?></a>				</td>				<td nowrap="nowrap">					<?php echo $lvisit; ?>				</td>				<td>					<?php echo $row->id; ?>				</td>			</tr>			<?php				$k = 1 - $k;				}			?>		</tbody>	</table>	<input type="hidden" name="option" value="com_users" />	<input type="hidden" name="task" value="" />	<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 + -