本文整理汇总了PHP中CachetHQ\Cachet\Models\Incident::visible方法的典型用法代码示例。如果您正苦于以下问题:PHP Incident::visible方法的具体用法?PHP Incident::visible怎么用?PHP Incident::visible使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CachetHQ\Cachet\Models\Incident
的用法示例。
在下文中一共展示了Incident::visible方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: feedAction
/**
* Generates a Rss feed of all incidents.
*
* @param \CachetHQ\Cachet\Models\ComponentGroup|null $group
* @param bool $isRss
*
* @return \Illuminate\Http\Response
*/
private function feedAction(ComponentGroup &$group, $isRss)
{
if ($group->exists) {
$group->components->map(function ($component) {
$component->incidents()->visible()->orderBy('created_at', 'desc')->get()->map(function ($incident) use($isRss) {
$this->feedAddItem($incident, $isRss);
});
});
} else {
Incident::visible()->orderBy('created_at', 'desc')->get()->map(function ($incident) use($isRss) {
$this->feedAddItem($incident, $isRss);
});
}
return $this->feed->render($isRss ? 'rss' : 'atom');
}
示例2: feedAction
/**
* Generates an Atom feed of all incidents.
*
* @param \CachetHQ\Cachet\Models\ComponentGroup|null $group
*
* @return \Illuminate\Http\Response
*/
public function feedAction(ComponentGroup $group = null)
{
$feed = Feed::make();
$feed->title = Setting::get('app_name');
$feed->description = trans('cachet.feed');
$feed->link = Str::canonicalize(Setting::get('app_domain'));
$feed->setDateFormat('datetime');
if ($group->exists) {
$group->components->map(function ($component) use($feed) {
$component->incidents()->visible()->orderBy('created_at', 'desc')->get()->map(function ($incident) use($feed) {
$this->feedAddItem($feed, $incident);
});
});
} else {
Incident::visible()->orderBy('created_at', 'desc')->get()->map(function ($incident) use($feed) {
$this->feedAddItem($feed, $incident);
});
}
return $feed->render('atom');
}