| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?php
- /*
- * This file is part of MODX Revolution.
- *
- * Copyright (c) MODX, LLC. All Rights Reserved.
- *
- * For complete copyright and license information, see the COPYRIGHT and LICENSE
- * files found in the top-level directory of this distribution.
- */
- /**
- * "Media Browser" controller
- */
- class MediaBrowserManagerController extends modManagerController
- {
- /**
- * @inherit
- */
- public function checkPermissions()
- {
- return $this->modx->hasPermission('file_manager');
- }
- /**
- * Register custom CSS/JS for the page
- *
- * @return void
- */
- public function loadCustomCssJs()
- {
- // $mgrUrl = $this->modx->getOption('manager_url', null, MODX_MANAGER_URL);
- // $this->addJavascript($mgrUrl . 'assets/modext/widgets/media/browser.js');
- $this->addHtml(
- <<<HTML
- <script type="text/javascript">
- // <![CDATA[
- Ext.onReady(function() {
- Ext.getCmp('modx-layout').hideLeftbar(true, false);
- MODx.add('modx-media-view');
- });
- // ]]>
- </script>
- HTML
- );
- }
- /**
- * @inherit
- */
- public function process(array $scriptProperties = array())
- {
- return array();
- }
- /**
- * @inherit
- */
- public function getPageTitle()
- {
- return $this->modx->lexicon('modx_browser');
- }
- /**
- * @inherit
- */
- public function getTemplateFile()
- {
- return '';
- }
- /**
- * @inherit
- */
- public function getLanguageTopics()
- {
- return array('file');
- }
- }
|