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

📄 default_items.php

📁 Joomla15 - 最新开源CMS
💻 PHP
字号:
<?phpdefined('_JEXEC') or die('Restricted access');foreach ($this->items as $item){	echo '<tr>';	echo '<td class="sectiontableentry" headers="Count">';	echo $item->count + 1;	echo '</td>';	if ($this->params->get('show_position')) {		echo '<td headers="Position" class="sectiontableentry' . $item->odd . '">' . $item->con_position . '</td>';	}	echo '<td height="20" class="sectiontableentry" headers="Name">';	echo '<a href="' . $item->link . '" class="category' . $this->params->get('pageclass_sfx') . '">' . $item->name . '</a></td>';	if ($this->params->get('show_email')) {		echo '<td headers="Mail" class="sectiontableentry' . $item->odd . '">' . $item->email_to . '</td>';	}	if ($this->params->get('show_telephone')) {		echo '<td headers="Phone" class="sectiontableentry">' . $item->telephone . '</td>';	}	if ($this->params->get('show_mobile')) {		echo '<td headers="Mobile" class="sectiontableentry' . $item->odd . '">' . $item->mobile . '</td>';	}	if ($this->params->get('show_fax')) {		echo '<td headers="Fax" class="sectiontableentry">' . $item->fax . '</td>';	}	echo '</tr>';}?>

⌨️ 快捷键说明

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