当前位置: 首页>>代码示例>>PHP>>正文


PHP theme::get_info方法代码示例

本文整理汇总了PHP中theme::get_info方法的典型用法代码示例。如果您正苦于以下问题:PHP theme::get_info方法的具体用法?PHP theme::get_info怎么用?PHP theme::get_info使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在theme的用法示例。


在下文中一共展示了theme::get_info方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: choose

 public function choose($type, $theme_name)
 {
     access::verify_csrf();
     $info = theme::get_info($theme_name);
     if ($type == "admin" && $info->admin) {
         module::set_var("gallery", "active_admin_theme", $theme_name);
         message::success(t("Successfully changed your admin theme to <b>%theme_name</b>", array("theme_name" => $info->name)));
     } else {
         if ($type == "site" && $info->site) {
             module::set_var("gallery", "active_site_theme", $theme_name);
             message::success(t("Successfully changed your Gallery theme to <b>%theme_name</b>", array("theme_name" => $info->name)));
         }
     }
     url::redirect("admin/themes");
 }
开发者ID:kandsten,项目名称:gallery3,代码行数:15,代码来源:admin_themes.php

示例2: __construct

 /**
  * Attempts to load a view and pre-load view data.
  *
  * @throws  Kohana_Exception  if the requested view cannot be found
  * @param   string  $name view name
  * @param   string  $page_type page type: collection, item, or other
  * @param   string  $page_subtype page sub type: album, photo, tags, etc
  * @param   string  $theme_name view name
  * @return  void
  */
 public function __construct($name, $page_type, $page_subtype)
 {
     parent::__construct($name);
     $this->theme_name = module::get_var("gallery", "active_site_theme");
     if (identity::active_user()->admin) {
         $theme_name = Input::instance()->get("theme");
         if ($theme_name && file_exists(THEMEPATH . $theme_name) && strpos(realpath(THEMEPATH . $theme_name), THEMEPATH) == 0) {
             $this->theme_name = $theme_name;
         }
     }
     $this->item = null;
     $this->tag = null;
     $this->set_global(array("theme" => $this, "theme_info" => theme::get_info($this->theme_name), "user" => identity::active_user(), "page_type" => $page_type, "page_subtype" => $page_subtype, "page_title" => null));
     if (module::get_var("gallery", "maintenance_mode", 0)) {
         if (identity::active_user()->admin) {
             message::warning(t("This site is currently in maintenance mode.  Visit the <a href=\"%maintenance_url\">maintenance page</a>", array("maintenance_url" => url::site("admin/maintenance"))));
         } else {
             message::warning(t("This site is currently in maintenance mode."));
         }
     }
 }
开发者ID:JasonWiki,项目名称:docs,代码行数:31,代码来源:Theme_View.php


注:本文中的theme::get_info方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。