default.php

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

PHP
19
字号
<?php // no direct accessdefined('_JEXEC') or die('Restricted access'); ?><span class="breadcrumbs pathway"><?php for ($i = 0; $i < $count; $i ++) :	// If not the last item in the breadcrumbs add the separator	if ($i < $count -1) {		if(!empty($list[$i]->link)) {			echo '<a href="'.$list[$i]->link.'" class="pathway">'.$list[$i]->name.'</a>';		} else {			echo $list[$i]->name;		}		echo ' '.$separator.' ';	}  else if ($params->get('showLast', 1)) { // when $i == $count -1 and 'showLast' is true	    echo $list[$i]->name;	}endfor; ?></span>

⌨️ 快捷键说明

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