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

📄 default_items.php

📁 Joomla!是一套获得过多个奖项的内容管理系统(Content Management System, CMS)。Joomla!采用PHP+MySQL数据库开发
💻 PHP
字号:
<?php // @version $Id: default_items.php 10381 2008-06-01 03:35:53Z pasamio $defined('_JEXEC') or die('Restricted access');?><?php foreach ($this->items as $item) : ?><tr>	<td class="sectiontableentry" headers="Count">		<?php echo $item->count + 1; ?>	</td>	<?php if ($this->params->get('show_position')) : ?>	<td headers="Position" class="sectiontableentry<?php echo $item->odd; ?>">		<?php echo $item->con_position; ?>	</td>	<?php endif; ?>	<td height="20" class="sectiontableentry" headers="Name">		<a href="<?php echo $item->link; ?>" class="category<?php echo $this->params->get('pageclass_sfx'); ?>">			<?php echo $item->name; ?></a>	</td>	<?php if ($this->params->get('show_email')) : ?>	<td headers="Mail" class="sectiontableentry<?php echo $item->odd; ?>">		<?php echo $item->email_to; ?>	</td>	<?php endif; ?>	<?php if ($this->params->get('show_telephone')) : ?>	<td headers="Phone" class="sectiontableentry">		<?php echo $item->telephone; ?>	</td>	<?php endif; ?>	<?php if ($this->params->get('show_mobile')) : ?>	<td headers="Mobile" class="sectiontableentry<?php echo $item->odd; ?>">		<?php echo $item->mobile; ?>	</td>	<?php endif; ?>	<?php if ($this->params->get('show_fax')) : ?>	<td headers="Fax" class="sectiontableentry">		<?php echo $item->fax; ?>	</td>	<?php endif; ?></tr><?php endforeach; ?>

⌨️ 快捷键说明

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