本文整理汇总了PHP中Themes::list_all方法的典型用法代码示例。如果您正苦于以下问题:PHP Themes::list_all方法的具体用法?PHP Themes::list_all怎么用?PHP Themes::list_all使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Themes
的用法示例。
在下文中一共展示了Themes::list_all方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: index
public function index()
{
if (Input::method() == 'POST') {
if (Metadata::update()) {
return Response::redirect($this->admin_url . '/metadata');
}
}
// provide a list to set for our home page and posts page
$pages = Pages::list_all(array('status' => 'published'));
// list valid themes
$themes = Themes::list_all();
Template::render('metadata/index', array('pages' => $pages, 'themes' => $themes, 'metadata' => (object) Config::get('metadata')));
}
示例2:
<?php
// get themes
require PATH . 'classes/themes' . EXT;
$themes = Themes::list_all();
?>
<hgroup role="banner">
<h1>Marketplace</h1>
<a href="/themes/submit">Submit your theme</a>
</hgroup>
<section>
<ul class="submissions">
<?php
foreach ($themes as $key => $theme) {
?>
<li>
<figure>
<a class="img" href="/themes/view/<?php
echo $key;
?>
">
<img src="/submissions/<?php
echo $key;
?>
/preview.png">
</a>
<figcaption>
<h2><a href="/themes/view/<?php