示例#1
0
文件: theme.php 项目: ZyXelP/oxwall
 public function reset()
 {
     $dto = $this->themeService->findThemeByKey(OW::getConfig()->getValue('base', 'selectedTheme'));
     $this->themeService->resetTheme($dto->getId());
     $this->redirect(OW::getRouter()->urlForRoute('admin_themes_edit'));
 }
示例#2
0
文件: theme.php 项目: vazahat/dudex
 public function reset()
 {
     $dto = $this->themeService->findThemeByName(OW::getConfig()->getValue('base', 'selectedTheme'));
     $this->themeService->resetTheme($dto->getId());
     $this->redirectToAction('settings');
 }