| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?php
- /**
- * @package modx
- * @subpackage manager.controllers
- */
- class StaticResourceUpdateManagerController extends ResourceUpdateManagerController {
- /**
- * Register custom CSS/JS for the page
- * @return void
- */
- public function loadCustomCssJs() {
- $managerUrl = $this->context->getOption('manager_url', MODX_MANAGER_URL, $this->modx->_userConfig);
- $this->addJavascript($managerUrl.'assets/modext/widgets/element/modx.panel.tv.renders.js');
- $this->addJavascript($managerUrl.'assets/modext/widgets/resource/modx.grid.resource.security.local.js');
- $this->addJavascript($managerUrl.'assets/modext/widgets/resource/modx.panel.resource.tv.js');
- $this->addJavascript($managerUrl.'assets/modext/widgets/resource/modx.panel.resource.js');
- $this->addJavascript($managerUrl.'assets/modext/widgets/resource/modx.panel.resource.static.js');
- $this->addJavascript($managerUrl.'assets/modext/sections/resource/update.js');
- $this->addJavascript($managerUrl.'assets/modext/sections/resource/static/update.js');
- $this->addHtml('<script type="text/javascript">
- // <![CDATA[
- MODx.config.publish_document = "'.$this->canPublish.'";
- MODx.onDocFormRender = "'.$this->onDocFormRender.'";
- MODx.ctx = "'.$this->resource->get('context_key').'";
- Ext.onReady(function() {
- MODx.load({
- xtype: "modx-page-static-update"
- ,resource: "'.$this->resource->get('id').'"
- ,record: '.$this->modx->toJSON($this->resourceArray).'
- ,publish_document: "'.$this->canPublish.'"
- ,preview_url: "'.$this->previewUrl.'"
- ,locked: '.($this->locked ? 1 : 0).'
- ,lockedText: "'.$this->lockedText.'"
- ,canSave: '.($this->canSave ? 1 : 0).'
- ,canEdit: "'.($this->modx->hasPermission('edit_document') ? 1 : 0).'"
- ,canCreate: "'.($this->modx->hasPermission('new_document') ? 1 : 0).'"
- ,canDelete: "'.($this->modx->hasPermission('delete_document') ? 1 : 0).'"
- ,show_tvs: '.(!empty($this->tvCounts) ? 1 : 0).'
- });
- });
- // ]]>
- </script>');
- /* load RTE */
- $this->loadRichTextEditor();
- }
- /**
- * Used to set values on the resource record sent to the template for derivative classes
- *
- * @return void|string
- */
- public function prepareResource() {
- /* get openTo directory */
- $baseUrlRelative = false;
- $wctx = $this->resource->get('context_key');
- if (!empty($wctx)) {
- $workingContext = $this->modx->getContext($wctx);
- if (!$workingContext) {
- return $this->failure($this->modx->lexicon('permission_denied'));
- }
- } else {
- $workingContext =& $this->modx->context;
- }
- $this->modx->getService('fileHandler','modFileHandler', '', array('context' => $workingContext->get('key')));
- $baseUrl = $this->modx->fileHandler->getBaseUrl();
- if (!empty($this->resourceArray['content'])) {
- $this->resourceArray['openTo'] = str_replace($baseUrl,'',dirname($this->resourceArray['content']).'/');
- } else {
- $this->resourceArray['openTo'] = '/';
- }
- }
- /**
- * Return the location of the template file
- * @return string
- */
- public function getTemplateFile() {
- return 'resource/staticresource/update.tpl';
- }
- }
|