themeInstaller = $themeInstaller; } /** * @return mixed */ public function getThemeInstaller() { return $this->themeInstaller; } /** * Enable one or more themes. * * @command theme:enable * @param $themes A comma delimited list of themes. * @aliases then,theme-enable */ public function enable($themes) { $themes = _convert_csv_to_array($themes); if (!$this->getThemeInstaller()->install($themes, true)) { throw new \Exception('Unable to install themes.'); } $this->logger()->success(dt('Successfully enabled theme: !list', ['!list' => implode(', ', $themes)])); } /** * Uninstall theme. * * @command theme:uninstall * @param $themes A comma delimited list of themes. * @aliases thun,theme-uninstall */ public function uninstall($themes) { $themes = _convert_csv_to_array($themes); if (!$this->getThemeInstaller()->uninstall($themes, true)) { throw new \Exception('Unable to uninstall themes.'); } $this->logger()->success(dt('Successfully uninstalled theme: !list', ['!list' => implode(', ', $themes)])); // Our logger got blown away during the container rebuild above. $boot = Drush::bootstrapManager()->bootstrap(); $boot->addLogger(); } }