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


PHP Theme::all方法代碼示例

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


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

示例1: getThemeOptions

 public function getThemeOptions($keyValue = null)
 {
     $all = Theme::all();
     $ret = [];
     foreach ($all as $theme) {
         $ret[$theme->getDirName()] = $theme->getConfigValue('name', $theme->getDirName());
     }
     return ['' => '-- none --'] + $ret;
 }
開發者ID:kentucky-roberts,項目名稱:lkncleaning.com,代碼行數:9,代碼來源:Settings.php

示例2: fire

 /**
  * Execute the console command.
  */
 public function fire()
 {
     $themeManager = ThemeManager::instance();
     $updateManager = UpdateManager::instance();
     foreach (Theme::all() as $theme) {
         $flag = $theme->isActiveTheme() ? '[*] ' : '[-] ';
         $themeId = $theme->getId();
         $themeName = $themeManager->findByDirName($themeId) ?: $themeId;
         $this->info($flag . $themeName);
     }
     if ($this->option('include-marketplace')) {
         // @todo List everything in the marketplace - not just popular.
         $popularThemes = $updateManager->requestPopularProducts('theme');
         foreach ($popularThemes as $popularTheme) {
             if (!$themeManager->isInstalled($popularTheme['code'])) {
                 $this->info('[ ] ' . $popularTheme['code']);
             }
         }
     }
     $this->info(PHP_EOL . "[*] Active    [-] Installed    [ ] Not installed");
 }
開發者ID:GoldBest,項目名稱:october,代碼行數:24,代碼來源:ThemeList.php

示例3: up

 public function up()
 {
     $themes = Theme::all();
     foreach ($themes as $theme) {
         $partials = Partial::inTheme($theme)->all();
         foreach ($partials as $partial) {
             try {
                 $path = $partial->getFullPath();
                 $contents = File::get($path);
                 if (strpos($contents, 'staticPageSnippetCode') === false) {
                     continue;
                 }
                 $contents = str_replace('staticPageSnippetName', 'snippetName', $contents);
                 $contents = str_replace('staticPageSnippetCode', 'snippetCode', $contents);
                 $contents = str_replace('staticPageSnippetProperties', 'snippetProperties', $contents);
                 File::put($path, $contents);
             } catch (\Exception $ex) {
                 continue;
             }
         }
     }
 }
開發者ID:sopnopriyo,項目名稱:edumalaysiabd,代碼行數:22,代碼來源:snippets_rename_viewbag_properties.php


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