| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?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.
- */
- /**
- * Loads the MODx.Browser page
- *
- * @package modx
- * @subpackage manager.controllers
- */
- class BrowserManagerController extends modManagerController {
- public $ctx;
- public $loadBaseJavascript = true;
- public $loadHeader = false;
- public $loadFooter = false;
- /**
- * Check for any permissions or requirements to load page
- * @return bool
- */
- public function checkPermissions() {
- return $this->modx->hasPermission('file_manager');
- }
- /**
- * Register custom CSS/JS for the page
- * @return void
- */
- public function loadCustomCssJs() {
- /* invoke OnRichTextBrowserInit */
- $this->addHtml('<script type="text/javascript">
- MODx.siteId = "'.$this->modx->user->getUserToken($this->modx->context->get('key')).'";
- MODx.ctx = "'.$this->ctx.'";
- </script>');
- }
- /**
- * Custom logic code here for setting placeholders, etc
- * @param array $scriptProperties
- * @return mixed
- */
- public function process(array $scriptProperties = array()) {
- $placeholders = array();
- $scriptProperties['ctx'] = !empty($scriptProperties['ctx']) ? $scriptProperties['ctx'] : 'web';
- $rtecallback = $this->modx->invokeEvent('OnRichTextBrowserInit', $scriptProperties);
- if (is_array($rtecallback)) $rtecallback = trim(implode(',',$rtecallback),',');
- $placeholders['rtecallback'] = $rtecallback;
- $this->ctx = $scriptProperties['ctx'];
- $placeholders['_ctx'] = $this->ctx;
- $_SERVER['HTTP_MODAUTH'] = $this->modx->user->getUserToken($this->modx->context->get('key'));
- $placeholders['site_id'] = $_SERVER['HTTP_MODAUTH'];
- $placeholders['source'] = $this->modx->getOption('source',$scriptProperties,$this->modx->getOption('default_media_source',null,1));
- return $placeholders;
- }
- /**
- * Return the pagetitle
- *
- * @return string
- */
- public function getPageTitle() {
- return $this->modx->lexicon('modx_resource_browser');
- }
- /**
- * Return the location of the template file
- * @return string
- */
- public function getTemplateFile() {
- return 'browser/index.tpl';
- }
- /**
- * Specify the language topics to load
- * @return array
- */
- public function getLanguageTopics() {
- return array('file');
- }
- }
|