本文整理汇总了PHP中Sample::setEntries方法的典型用法代码示例。如果您正苦于以下问题:PHP Sample::setEntries方法的具体用法?PHP Sample::setEntries怎么用?PHP Sample::setEntries使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Sample
的用法示例。
在下文中一共展示了Sample::setEntries方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Sample
<?php
/**
* DotBoost Technologies Inc.
* DotKernel Application Framework
*
* @category DotKernel
* @package Frontend
* @copyright Copyright (c) 2009-2015 DotBoost Technologies Inc. (http://www.dotboost.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @version $Id: SampleController.php 867 2015-01-03 22:52:05Z julian $
*/
/**
* Sample Controller
* @author DotKernel Team <team@dotkernel.com>
*/
$sampleModel = new Sample();
$sampleView = new Sample_View($view);
//prepare feed
$feed = array('title' => $option->feed->title, 'link' => $registry->configuration->website->params->url . $option->feed->link, 'charset' => $option->feed->charset, 'language' => $option->feed->language);
$feed['published'] = time();
$entries = $sampleModel->setEntries();
$feed['entries'] = $entries;
//set the feed that will be outputed
$sampleView->setFeed($feed);