default.php

来自「简介:一款免费开源的内容管理系统(CMS)」· PHP 代码 · 共 44 行

PHP
44
字号
<?php // @version $Id: default.php 10498 2008-07-04 00:05:36Z ian $defined('_JEXEC') or die('Restricted access');?><?php if ( $this->params->get( 'show_page_title', 1 ) ) : ?><h1 class="componentheading<?php echo $this->params->get('pageclass_sfx'); ?>">	<?php echo $this->escape($this->params->get('page_title')); ?></h1><?php endif; ?><h2 class="componentheading<?php echo $this->params->get('pageclass_sfx'); ?>">	<a href="<?php echo $this->newsfeed->channel['link']; ?>" target="_blank">		<?php echo str_replace('&apos;', "'", $this->newsfeed->channel['title']); ?></a></h2><?php if ( $this->params->get( 'show_feed_description' ) )  : ?><div class="feed_description">	<?php echo str_replace('&apos;', "'", $this->newsfeed->channel['description']); ?></div><?php endif; ?><?php if ( isset( $this->newsfeed->image['url'] ) && isset( $this->newsfeed->image['title'] ) && $this->params->get( 'show_feed_image' ) ) : ?><img src="<?php echo $this->newsfeed->image['url']; ?>" alt="<?php echo $this->newsfeed->image['title']; ?>" /><?php endif; ?><?php if ( count( $this->newsfeed->items ) ) : ?><ul>	<?php foreach ( $this->newsfeed->items as $item ) : ?>	<li>		<?php if ( !is_null( $item->get_link() ) ) : ?>		<a href="<?php echo $item->get_link(); ?>" target="_blank">			<?php echo $item->get_title(); ?></a>		<?php endif; ?>		<?php if ( $this->params->get( 'show_item_description' ) && $item->get_description() ) : ?>		<br />		<?php $text = $this->limitText( $item->get_description(), $this->params->get( 'feed_word_count' ) );		echo str_replace('&apos;', "'", $text); ?>		<br /><br />		<?php endif; ?>	</li>	<?php endforeach; ?></ul><?php endif;

⌨️ 快捷键说明

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