當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Content::createPreview方法代碼示例

本文整理匯總了PHP中Content::createPreview方法的典型用法代碼示例。如果您正苦於以下問題:PHP Content::createPreview方法的具體用法?PHP Content::createPreview怎麽用?PHP Content::createPreview使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Content的用法示例。


在下文中一共展示了Content::createPreview方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: feed_list

 private function feed_list($result, $mode)
 {
     if ($result instanceof DBObject) {
         Backend::add('title', ConfigValue::get('Title'));
         Backend::add('link', SITE_LINK . '/?q=content');
         Backend::add('description', ConfigValue::get('Description'));
         if (!empty($result->list) && is_array($result->list)) {
             $list = array();
             foreach ($result->list as $item) {
                 if (ConfigValue::get('CleanURLs', false)) {
                     $item['link'] = SITE_LINK . '/content/' . $item['id'];
                 } else {
                     $item['link'] = SITE_LINK . '/?q=content/' . $item['id'];
                 }
                 $item['body'] = Content::createPreview($item['body'], false);
                 $list[] = $item;
             }
         } else {
             $list = false;
         }
         Backend::add('list', $list);
     }
     return $result;
 }
開發者ID:jrgns,項目名稱:backend-php,代碼行數:24,代碼來源:Content.obj.php

示例2: feed_display

 private function feed_display($result, $mode)
 {
     if (!$result instanceof DBObject) {
         return $result;
     }
     Backend::add('title', $result->array['name']);
     Backend::add('link', SITE_LINK . '/?q=tag/' . $result->array['id']);
     Backend::add('description', $result->array['description']);
     if (!empty($result->array['list']) && is_array($result->array['list'])) {
         $list = array();
         $max_time = 0;
         foreach ($result->array['list'] as $item) {
             $link = SITE_LINK;
             if (Value::get('clean_urls', false)) {
                 $link .= $result->array['foreign_table'] . '/' . $item['id'];
             } else {
                 $link .= '?q=' . $result->array['foreign_table'] . '/' . $item['id'];
             }
             $item['link'] = $link;
             if ($result->array['foreign_table'] == 'contents') {
                 $item['body'] = Content::createPreview($item['body']);
             }
             $list[] = $item;
             $max_time = strtotime($item['modified']) > $max_time ? strtotime($item['modified']) : $max_time;
         }
         Backend::add('AtomLastDate', gmdate('Y-m-d\\TH:i:s\\Z', $max_time));
     } else {
         $list = false;
     }
     Backend::add('list', $list);
     return $result;
 }
開發者ID:jrgns,項目名稱:backend-php,代碼行數:32,代碼來源:Tag.obj.php

示例3:

<div class="content_preview box">
	<h3><a href="?q=content/<?php 
echo $content['name'];
?>
">
	    <?php 
echo $content['title'];
?>
    </a></h3>
	<div>
		<?php 
echo Content::createPreview($content['body'], 100);
?>
	</div>
	<div class="bottom">
		<a href="?q=content/<?php 
echo $content['name'];
?>
">Read More</a>
	</div>
</div>
開發者ID:jrgns,項目名稱:backend-php,代碼行數:21,代碼來源:content.preview.tpl.php

示例4: foreach

?>
	<?php 
if ($list) {
    foreach ($list as $item) {
        ?>
		<entry>
			<title><?php 
        echo htmlspecialchars($item['title']);
        ?>
</title>
			<link href="<?php 
        echo $item['link'];
        ?>
" />
			<summary type="html"><![CDATA[<?php 
        echo Content::createPreview($item['body']);
        ?>
]]></summary>
			<updated><?php 
        echo gmdate('Y-m-d\\TH:i:s\\Z', strtotime($item['modified']));
        ?>
</updated>
			<id><?php 
        echo $item['link'];
        ?>
</id>
		</entry>
	<?php 
    }
}
?>
開發者ID:jrgns,項目名稱:backend-php,代碼行數:31,代碼來源:atom.tpl.php

示例5: foreach

    foreach ($db_object->array['list'] as $item) {
        $tags = Tag::getTags('contents', $item['id']);
        $link = '?q=content/' . $item['name'];
        ?>
		<h3>
			<a href="<?php 
        echo $link;
        ?>
"><?php 
        echo plain($item['title']);
        ?>
</a>
		</h3>
		<p>
			<?php 
        echo Content::createPreview($item['body'], false);
        ?>
		</p>
		<div class="clear">
			<div class="span-3">
				<a href="<?php 
        echo $link;
        ?>
">Read more</a>
			</div>
			<div class="span-6">
				<?php 
        if ($tags) {
            foreach ($tags as $tag) {
                ?>
					<a  href="?q=tag/<?php 
開發者ID:jrgns,項目名稱:backend-php,代碼行數:31,代碼來源:tag.contents.list.tpl.php


注:本文中的Content::createPreview方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。