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


PHP Theme::exists方法代码示例

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


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

示例1: fire

 /**
  * Execute the console command.
  * @return void
  */
 public function fire()
 {
     $themeName = $this->argument('name');
     $argDirName = $this->argument('dirName');
     if ($argDirName && $themeName == $argDirName) {
         $argDirName = null;
     }
     if ($argDirName) {
         if (!preg_match('/^[a-z0-9\\_\\-]+$/i', $argDirName)) {
             return $this->error('Invalid destination directory name.');
         }
         if (Theme::exists($argDirName)) {
             return $this->error(sprintf('A theme named %s already exists.', $argDirName));
         }
     }
     try {
         $themeManager = ThemeManager::instance();
         $updateManager = UpdateManager::instance();
         $themeDetails = $updateManager->requestThemeDetails($themeName);
         if ($themeManager->isInstalled($themeDetails['code'])) {
             return $this->error(sprintf('The theme %s is already installed.', $themeDetails['code']));
         }
         if (Theme::exists($themeDetails['code'])) {
             return $this->error(sprintf('A theme named %s already exists.', $themeDetails['code']));
         }
         $fields = ['Name', 'Description', 'Author', 'URL', ''];
         $this->info(sprintf(implode(': %s' . PHP_EOL, $fields), $themeDetails['code'], $themeDetails['description'], $themeDetails['author'], $themeDetails['product_url']));
         if (!$this->confirm('Do you wish to continue? [Y|n]', true)) {
             return;
         }
         $this->info('Downloading theme...');
         $updateManager->downloadTheme($themeDetails['code'], $themeDetails['hash']);
         $this->info('Extracting theme...');
         $updateManager->extractTheme($themeDetails['code'], $themeDetails['hash']);
         $dirName = $this->themeCodeToDir($themeDetails['code']);
         if ($argDirName) {
             /*
              * Move downloaded theme to a new directory.
              * Basically we're renaming it.
              */
             File::move(themes_path() . '/' . $dirName, themes_path() . '/' . $argDirName);
             /*
              * Let's make sure to unflag the 'old' theme as
              * installed so it can be re-installed later.
              */
             $themeManager->setUninstalled($themeDetails['code']);
             $dirName = $argDirName;
         }
         $this->info(sprintf('The theme %s has been installed. (now %s)', $themeDetails['code'], $dirName));
     } catch (Exception $ex) {
         $this->error($ex->getMessage());
     }
 }
开发者ID:minhkiller,项目名称:october,代码行数:57,代码来源:ThemeInstall.php

示例2: fire

 /**
  * Execute the console command.
  * @return void
  */
 public function fire()
 {
     $themeManager = ThemeManager::instance();
     $themeName = $this->argument('name');
     $themeExists = Theme::exists($themeName);
     if (!$themeExists) {
         $themeName = strtolower(str_replace('.', '-', $themeName));
         $themeExists = Theme::exists($themeName);
     }
     if (!$themeExists) {
         return $this->error(sprintf('The theme %s does not exist.', $themeName));
     }
     if (!$this->confirmToProceed(sprintf('This will DELETE theme "%s" from the filesystem and database.', $themeName))) {
         return;
     }
     try {
         $themeManager->deleteTheme($themeName);
         $this->info(sprintf('The theme %s has been deleted.', $themeName));
     } catch (Exception $ex) {
         $this->error($ex->getMessage());
     }
 }
开发者ID:GoldBest,项目名称:october,代码行数:26,代码来源:ThemeRemove.php


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