本文整理匯總了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;
}
示例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");
}
示例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;
}
}
}
}