modxcms/revolution

View on GitHub
manager/controllers/default/browser/index.class.php

Summary

Maintainability
A
0 mins
Test Coverage
<?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>
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';
        $context = $this->modx->getObject('modContext', [
            'key' => (string)$scriptProperties['ctx'],
        ]);
        if (!$context) {
            return $this->failure(sprintf($this->modx->lexicon('context_with_key_not_found'), htmlentities($scriptProperties['ctx'], ENT_QUOTES, 'UTF-8')));
        }

        $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', 'context');
    }
}