Beispiel #1
0
 public function __construct(\Ilch\Layout\Base $layout, \Ilch\View $view, \Ilch\Request $request, \Ilch\Router $router, \Ilch\Translator $translator)
 {
     parent::__construct($layout, $view, $request, $router, $translator);
     $this->getLayout()->set('menu', array());
     $this->getLayout()->setFile('modules/admin/layouts/index');
     $moduleMapper = new \Modules\Admin\Mappers\Module();
     $this->getLayout()->set('modules', $moduleMapper->getModules());
 }
Beispiel #2
0
    public function indexAction()
    {
        $moduleMapper = new \Modules\Admin\Mappers\Module();
        $pageMapper = new \Modules\Page\Mappers\Page();
        $this->getLayout()->getAdminHmenu()->add($this->getTranslator()->trans('systemSettings'), array('action' => 'index'));
        if ($this->getRequest()->isPost()) {
            $this->getConfig()->set('multilingual_acp', $this->getRequest()->getPost('multilingualAcp'));
            $this->getConfig()->set('content_language', $this->getRequest()->getPost('contentLanguage'));
            $this->getConfig()->set('description', $this->getRequest()->getPost('description'));
            $this->getConfig()->set('page_title', $this->getRequest()->getPost('pageTitle'));
            $this->getConfig()->set('start_page', $this->getRequest()->getPost('startPage'));
            $this->getConfig()->set('mod_rewrite', (int) $this->getRequest()->getPost('modRewrite'));
            $this->getConfig()->set('standardMail', $this->getRequest()->getPost('standardMail'));
            $this->getConfig()->set('timezone', $this->getRequest()->getPost('timezone'));
            $this->getConfig()->set('locale', $this->getRequest()->getPost('locale'));
            if ($this->getRequest()->getPost('navbarFixed') === '1') {
                $this->getConfig()->set('admin_layout_top_nav', 'navbar-fixed-top');
            }
            if ($this->getRequest()->getPost('navbarFixed') === '0') {
                $this->getConfig()->set('admin_layout_top_nav', '');
            }
            if ((int) $this->getRequest()->getPost('modRewrite')) {
                $htaccess = <<<'HTACCESS'
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase %1$s/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %%{REQUEST_FILENAME} !-f
    RewriteCond %%{REQUEST_FILENAME} !-d
    RewriteRule . %1$s/index.php [L]
</IfModule>
HTACCESS;
                file_put_contents(APPLICATION_PATH . '/../.htaccess', sprintf($htaccess, REWRITE_BASE));
            } elseif (file_exists(APPLICATION_PATH . '/../.htaccess')) {
                file_put_contents(APPLICATION_PATH . '/../.htaccess', '');
            }
            $this->addMessage('saveSuccess');
        }
        $this->getView()->set('languages', $this->getTranslator()->getLocaleList());
        $this->getView()->set('multilingualAcp', $this->getConfig()->get('multilingual_acp'));
        $this->getView()->set('contentLanguage', $this->getConfig()->get('content_language'));
        $this->getView()->set('description', $this->getConfig()->get('description'));
        $this->getView()->set('pageTitle', $this->getConfig()->get('page_title'));
        $this->getView()->set('startPage', $this->getConfig()->get('start_page'));
        $this->getView()->set('modRewrite', $this->getConfig()->get('mod_rewrite'));
        $this->getView()->set('standardMail', $this->getConfig()->get('standardMail'));
        $this->getView()->set('timezones', \DateTimeZone::listIdentifiers());
        $this->getView()->set('timezone', $this->getConfig()->get('timezone'));
        $this->getView()->set('locale', $this->getConfig()->get('locale'));
        $this->getView()->set('modules', $moduleMapper->getModules());
        $this->getView()->set('pages', $pageMapper->getPageList());
        $this->getView()->set('navbarFixed', $this->getConfig()->get('admin_layout_top_nav'));
    }
Beispiel #3
0
 public function indexAction()
 {
     $this->getLayout()->getAdminHmenu()->add($this->getTranslator()->trans('modules'), array('action' => 'index'));
     $modules = new \Modules\Admin\Mappers\Module();
     $this->getView()->set('modules', $modules->getModules());
 }
Beispiel #4
0
 public function indexAction()
 {
     $this->getLayout()->getAdminHmenu()->add($this->getTranslator()->trans('menu'), array('action' => 'index'));
     $menuId = 1;
     if ($this->getRequest()->getParam('menu')) {
         $menuId = (int) $this->getRequest()->getParam('menu');
     }
     $menuMapper = new MenuMapper();
     $pageMapper = new PageMapper();
     /*
      * Saves the item tree to database.
      */
     if ($this->getRequest()->isPost()) {
         if ($this->getRequest()->getPost('save')) {
             $sortItems = json_decode($this->getRequest()->getPost('hiddenMenu'));
             $items = $this->getRequest()->getPost('items');
             $oldItems = $menuMapper->getMenuItems($menuId);
             /*
              * Deletes old entries from database.
              */
             if (!empty($oldItems)) {
                 foreach ($oldItems as $oldItem) {
                     if (!isset($items[$oldItem->getId()])) {
                         $menuMapper->deleteItem($oldItem);
                     }
                 }
             }
             if ($items) {
                 $sortArray = array();
                 foreach ($sortItems as $sortItem) {
                     if ($sortItem->item_id !== null) {
                         $sortArray[$sortItem->item_id] = (int) $sortItem->parent_id;
                     }
                 }
                 foreach ($items as $item) {
                     $menuItem = new MenuItem();
                     if (strpos($item['id'], 'tmp_') !== false) {
                         $tmpId = str_replace('tmp_', '', $item['id']);
                     } else {
                         $menuItem->setId($item['id']);
                     }
                     $menuItem->setMenuId($menuId);
                     $menuItem->setType($item['type']);
                     $menuItem->setSiteId($item['siteid']);
                     $menuItem->setHref($item['href']);
                     $menuItem->setTitle($item['title']);
                     if ((int) $item['boxkey'] > 0) {
                         $menuItem->setBoxId($item['boxkey']);
                     } else {
                         $menuItem->setBoxKey($item['boxkey']);
                     }
                     $menuItem->setModuleKey($item['modulekey']);
                     $newId = $menuMapper->saveItem($menuItem);
                     if (isset($tmpId)) {
                         foreach ($sortArray as $id => $parentId) {
                             if ($id == $tmpId) {
                                 unset($sortArray[$id]);
                                 $sortArray[$newId] = $parentId;
                             }
                             if ($parentId == $tmpId) {
                                 $sortArray[$id] = $newId;
                             }
                         }
                     }
                 }
                 $sort = 0;
                 foreach ($sortArray as $id => $parent) {
                     $menuItem = new MenuItem();
                     $menuItem->setId($id);
                     $menuItem->setSort($sort);
                     $menuItem->setParentId($parent);
                     $menuMapper->saveItem($menuItem);
                     $sort += 10;
                 }
             }
             $menu = new MenuModel();
             $menu->setId($menuId);
             $menuMapper->save($menu);
         }
         if ($this->getRequest()->getPost('delete')) {
             $id = (int) $this->getRequest()->getParam('menu');
             $menuMapper->delete($id);
             $this->redirect(array('action' => 'index'));
         }
         $this->addMessage('saveSuccess');
     }
     $menuItems = $menuMapper->getMenuItemsByParent($menuId, 0);
     $menu = $menuMapper->getMenu($menuId);
     $menus = $menuMapper->getMenus();
     $moduleMapper = new \Modules\Admin\Mappers\Module();
     $boxMapper = new \Modules\Admin\Mappers\Box();
     $locale = '';
     if ((bool) $this->getConfig()->get('multilingual_acp')) {
         if ($this->getTranslator()->getLocale() != $this->getConfig()->get('content_language')) {
             $locale = $this->getTranslator()->getLocale();
         }
     }
     $this->getView()->set('menu', $menu);
     $this->getView()->set('menus', $menus);
     $this->getView()->set('menuItems', $menuItems);
     $this->getView()->set('menuMapper', $menuMapper);
     $this->getView()->set('pages', $pageMapper->getPageList($locale));
     $this->getView()->set('boxes', (array) $boxMapper->getBoxList($locale));
     $this->getView()->set('modules', $moduleMapper->getModules());
 }