| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- require_once dirname(__DIR__) . '/index.class.php';
- /**
- * The name of the controller is based on the path (home) and the
- * namespace (clientconfig). This home controller is the main client view.
- */
- class ClientConfigAdminManagerController extends ClientConfigManagerController {
- /**
- * Any specific processing we need on the Admin controller.
- * @param array $scriptProperties
- */
- public function process(array $scriptProperties = array()) {
- if (!$this->clientconfig->hasAdminPermission()) {
- $url = $this->modx->getOption('manager_url') . '?a=' . $_GET['a'];
- $this->modx->sendRedirect($url);
- }
- }
- /**
- * The pagetitle to put in the <title> attribute.
- * @return null|string
- */
- public function getPageTitle() {
- return $this->modx->lexicon('clientconfig.adminpanel');
- }
- /**
- * Register all the needed javascript files. Using this method, it will automagically
- * combine and compress them if enabled in system settings.
- */
- public function loadCustomCssJs() {
- $this->addJavascript($this->clientconfig->config['jsUrl'].'mgr/widgets/grid.groups.js');
- $this->addJavascript($this->clientconfig->config['jsUrl'].'mgr/widgets/grid.settings.js');
- $this->addJavascript($this->clientconfig->config['jsUrl'].'mgr/widgets/window.groups.js');
- $this->addJavascript($this->clientconfig->config['jsUrl'].'mgr/widgets/window.settings.js');
- $this->addJavascript($this->clientconfig->config['jsUrl'].'mgr/widgets/window.import.js');
- $this->addJavascript($this->clientconfig->config['jsUrl'].'mgr/widgets/combos.js');
- $this->addLastJavascript($this->clientconfig->config['jsUrl'].'mgr/sections/admin.js');
- $this->addHtml('<script type="text/javascript">
- Ext.onReady(function() {
- MODx.config.help_url = "https://www.modmore.com/extras/clientconfig/documentation/?embed=1";
- MODx.load({ xtype: "clientconfig-page-admin" });
- });
- </script>');
- }
- /**
- * The name for the template file to load.
- * @return string
- */
- public function getTemplateFile() {
- return $this->clientconfig->config['templatesPath'].'home.tpl';
- }
- }
|