/** * @param array $unEscapedTags */ public function render($unEscapedTags = array()) { $this->markAsUnEscaped($unEscapedTags); if ($this->pageRenderer != null) { $metaTag = $this->tag->render(); $this->pageRenderer->addMetaTag($this->tag->render($metaTag)); } }
/** * @param string $content * @param bool $inline * @param bool $compress * @param bool $forceOnTop * @return void */ public function render($compress = TRUE, $forceOnTop = FALSE) { $content = $this->renderChildren(); if ($this->isCached()) { $this->pageRenderer->addJsFooterInlineCode(md5($content), $content, $compress, $forceOnTop); } else { // additionalFooterData not possible in USER_INT $GLOBALS['TSFE']->additionalHeaderData[md5($content)] = t3lib_div::wrapJS($content); } }
/** * Include a single file with optional concat, compress and cache * * @param array $filenames Filenames to include * @param boolean $cache If true, the file is cached (makes sens if $concat or one of the other options is specified) * @param boolean $concata If true and wildcard filename used, concats all files * @param boolean $compress If true, files are compressed * @param int $index Position to take in additionalHeaderData; pushes current resident DOWN * @param array $attributes Attributes of tag * @return void * @deprecated */ public function includeFile($filename, $cache = FALSE, $concat = FALSE, $compress = FALSE, $index = -1, $attributes = NULL) { $pathinfo = pathinfo($filename); $type = $pathinfo['extension']; if ($pathinfo['filename'] === '*') { $files = $this->getFilenamesOfType($pathinfo['dirname'], $pathinfo['extension']); if ($files) { $this->includeFiles($files, $cache, $concat, $compress, $index, $attributes); } return; } if ($type !== 'css' && $type !== 'js') { $type = 'js'; // assume Javascript for unknown files - this may change later on... } if ($type == 'js') { if ($this->isCached()) { $this->pageRenderer->addJsFile($filename, 'text/javascript', $compress, $index == 0); } else { $GLOBALS['TSFE']->additionalHeaderData[md5($filename)] = '<script type="text/javascript" src="' . $filename . '"></script>'; } } elseif ($type == 'css') { if ($this->isCached()) { $this->pageRenderer->addCssFile($filename, 'stylesheet', $attributes['media'] ? $attributes['media'] : 'all', '', $compress, $index == 0); } else { $GLOBALS['TSFE']->additionalHeaderData[md5($filename)] = '<link rel="stylesheet" type="text/css" media="' . ($attributes['media'] ? $attributes['media'] : 'all') . '" href="' . $filename . '" />'; } } }
/** * Sets the startup module from either GETvars module and mpdParams or user configuration. * * @return void */ protected function setStartupModule() { $startModule = preg_replace('/[^[:alnum:]_]/', '', t3lib_div::_GET('module')); if (!$startModule) { if ($GLOBALS['BE_USER']->uc['startModule']) { $startModule = $GLOBALS['BE_USER']->uc['startModule']; } else { if ($GLOBALS['BE_USER']->uc['startInTaskCenter']) { $startModule = 'user_task'; } } } $moduleParameters = t3lib_div::_GET('modParams'); if ($startModule) { $this->pageRenderer->addExtOnReadyCode(' // start in module: function startInModule(modName, cMR_flag, addGetVars) { Ext.onReady(function() { top.goToModule(modName, cMR_flag, addGetVars); }); } startInModule(\'' . $startModule . '\', false, ' . t3lib_div::quoteJSvalue($moduleParameters) . '); '); } }
/** * This method loads the locallang.xml file (default language), and * adds all keys found in it to the TYPO3.settings.extension_builder._LOCAL_LANG object * translated into the current language * * Dots in a key are replaced by a _ * * Example: * error.name becomes TYPO3.settings.extension_builder._LOCAL_LANG.error_name * * @return void */ private function setLocallangSettings() { $LL = t3lib_div::readLLfile('EXT:extension_builder/Resources/Private/Language/locallang.xml', 'default'); if (!empty($LL['default']) && is_array($LL['default'])) { foreach ($LL['default'] as $key => $value) { $this->pageRenderer->addInlineSetting('extensionBuilder._LOCAL_LANG', str_replace('.', '_', $key), Tx_Extbase_Utility_Localization::translate($key, 'extension_builder')); } } }
/** * Main function of the module. Write the content to $this->content * If you chose "web" as main module, you will need to consider the $this->id parameter which will contain the uid-number of the page clicked in the page tree * * @return [type] ... */ function main() { global $BE_USER, $LANG, $BACK_PATH, $TCA_DESCR, $TCA, $CLIENT, $TYPO3_CONF_VARS; $PATH_TYPO3 = t3lib_div::getIndpEnv('TYPO3_SITE_URL') . 'typo3/'; if ($BE_USER->user["admin"]) { // Draw the header. $this->doc = t3lib_div::makeInstance("template"); $this->doc->backPath = $BACK_PATH; $this->pageRenderer = $this->doc->getPageRenderer(); // Include Ext JS $this->pageRenderer->loadExtJS(true, true); $this->pageRenderer->enableExtJSQuickTips(); $this->pageRenderer->enableExtJsDebug(); $this->pageRenderer->addJsFile($BACK_PATH . t3lib_extMgm::extRelPath('caretaker') . 'res/js/tx.caretaker.js', 'text/javascript', FALSE, FALSE); $this->pageRenderer->addJsFile($BACK_PATH . t3lib_extMgm::extRelPath('caretaker') . 'res/js/tx.caretaker.NodeTree.js', 'text/javascript', FALSE, FALSE); //Add caretaker css $this->pageRenderer->addCssFile('../res/css/tx.caretaker.nodetree.css', 'stylesheet', 'all', '', FALSE); // storage Pid $confArray = unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['caretaker']); $storagePid = (int) $confArray['storagePid']; $this->pageRenderer->addJsInlineCode('Caretaker_Nodetree', ' Ext.state.Manager.setProvider(new Ext.state.CookieProvider()); Ext.ns("tx.caretaker"); Ext.onReady(function() { tx.caretaker.view = new Ext.Viewport({ layout: "fit", items: { id: "cartaker-tree", xtype: "caretaker-nodetree", autoScroll: true, dataUrl: "' . $this->doc->backPath . 'ajax.php?ajaxID=tx_caretaker::treeloader", addUrl: "' . $PATH_TYPO3 . 'alt_doc.php?edit[###NODE_TYPE###][' . $storagePid . ']=new", editUrl: "' . $PATH_TYPO3 . 'alt_doc.php?edit[tx_caretaker_###NODE_TYPE###][###NODE_UID###]=edit", hideUrl: "' . $PATH_TYPO3 . 'tce_db.php?&data[tx_caretaker_###NODE_TYPE###][###NODE_UID###][hidden]=1", unhideUrl: "' . $PATH_TYPO3 . 'tce_db.php?&data[tx_caretaker_###NODE_TYPE###][###NODE_UID###][hidden]=0" } }); tx_caretaker_updateTreeById = function( id ){ tx_caretaker_tree = Ext.getCmp("cartaker-tree"); tx_caretaker_tree.reloadTreePartial( id ); } }); '); $this->content .= $this->doc->startPage($LANG->getLL("title")); $this->doc->form = ''; } else { // If no access or if not admin $this->doc = t3lib_div::makeInstance("mediumDoc"); $this->doc->backPath = $BACK_PATH; $this->content .= $this->doc->startPage($LANG->getLL("title")); $this->content .= $this->doc->header($LANG->getLL("title")); $this->content .= $this->doc->spacer(5); $this->content .= $this->doc->spacer(10); } }
/** * Gets instance of PageRenderer * * @return t3lib_PageRenderer */ public function getPageRenderer() { if (!isset($this->pageRenderer)) { if ($GLOBALS['TSFE']->isINTincScript()) { // We use an instance of t3lib_PageRenderer to render additional header data // because this script is invoked after header has been rendered by $GLOBALS['TSFE']->getPageRenderer() $this->pageRenderer = t3lib_div::makeInstance('t3lib_PageRenderer'); $this->pageRenderer->setTemplateFile($this->extHttpPath . 'templates/rtehtmlarea_pageheader_frontend.html'); } else { $this->pageRenderer = $GLOBALS['TSFE']->getPageRenderer(); } $this->pageRenderer->setBackPath(TYPO3_mainDir); } return $this->pageRenderer; }
/** * Initializes the controller before invoking an action method. * * @return void */ protected function initializeAction() { // @todo Evaluate how the intval() call can be used with Extbase validators/filters $this->pageId = intval(t3lib_div::_GP('id')); $this->pageRenderer->addInlineSetting('Workspaces', 'id', $this->pageId); $this->pageRenderer->addInlineSetting('Workspaces', 'depth', $this->pageId === 0 ? 999 : 1); $this->pageRenderer->addCssFile(t3lib_extMgm::extRelPath('workspaces') . 'Resources/Public/StyleSheet/module.css'); $this->pageRenderer->addInlineLanguageLabelArray(array('title' => $GLOBALS['LANG']->getLL('title'), 'path' => $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:labels.path'), 'table' => $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:labels.table'), 'depth' => $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_web_perm.xml:Depth'), 'depth_0' => $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:labels.depth_0'), 'depth_1' => $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:labels.depth_1'), 'depth_2' => $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:labels.depth_2'), 'depth_3' => $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:labels.depth_3'), 'depth_4' => $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:labels.depth_4'), 'depth_infi' => $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:labels.depth_infi'))); $this->pageRenderer->addInlineLanguageLabelFile('EXT:workspaces/Resources/Private/Language/locallang.xml'); }
/** * Initializes the controller before invoking an action method. * * @return void */ protected function initializeAction() { $this->pageRenderer->addCssFile(t3lib_extMgm::extRelPath('smoothmigration') . 'Resources/Public/StyleSheet/module.css'); $this->pageRenderer->addInlineLanguageLabelFile('EXT:smoothmigration/Resources/Private/Language/locallang.xml'); $this->pageRenderer->addJsLibrary('jquery', t3lib_extMgm::extRelPath('smoothmigration') . 'Resources/Public/JavaScript/jquery-1.10.1.min.js'); $this->pageRenderer->addJsLibrary('sprintf', t3lib_extMgm::extRelPath('smoothmigration') . 'Resources/Public/JavaScript/sprintf.min.js'); $this->pageRenderer->addJsFile(t3lib_extMgm::extRelPath('smoothmigration') . 'Resources/Public/JavaScript/General.js'); if (t3lib_div::int_from_ver(TYPO3_version) > 6001000) { $this->moduleToken = \TYPO3\CMS\Core\FormProtection\FormProtectionFactory::get()->generateToken('moduleCall', 'tools_SmoothmigrationSmoothmigration'); } }
/** * Loads the css and javascript files of all registered navigation widgets * * @return void */ protected function loadResourcesForRegisteredNavigationComponents() { if (!is_array($GLOBALS['TBE_MODULES']['_navigationComponents'])) { return; } $loadedComponents = array(); foreach ($GLOBALS['TBE_MODULES']['_navigationComponents'] as $module => $info) { if (in_array($info['componentId'], $loadedComponents)) { continue; } $loadedComponents[] = $info['componentId']; $component = strtolower(substr($info['componentId'], strrpos($info['componentId'], '-') + 1)); $componentDirectory = 'components/' . $component . '/'; if ($info['isCoreComponent']) { $absoluteComponentPath = PATH_t3lib . 'js/extjs/' . $componentDirectory; $relativeComponentPath = '../' . str_replace(PATH_site, '', $absoluteComponentPath); } else { $absoluteComponentPath = t3lib_extMgm::extPath($info['extKey']) . $componentDirectory; $relativeComponentPath = t3lib_extMgm::extRelPath($info['extKey']) . $componentDirectory; } $cssFiles = t3lib_div::getFilesInDir($absoluteComponentPath . 'css/', 'css'); if (file_exists($absoluteComponentPath . 'css/loadorder.txt')) { //don't allow inclusion outside directory $loadOrder = str_replace('../', '', t3lib_div::getURL($absoluteComponentPath . 'css/loadorder.txt')); $cssFilesOrdered = t3lib_div::trimExplode(LF, $loadOrder, TRUE); $cssFiles = array_merge($cssFilesOrdered, $cssFiles); } foreach ($cssFiles as $cssFile) { $this->pageRenderer->addCssFile($relativeComponentPath . 'css/' . $cssFile); } $jsFiles = t3lib_div::getFilesInDir($absoluteComponentPath . 'javascript/', 'js'); if (file_exists($absoluteComponentPath . 'javascript/loadorder.txt')) { //don't allow inclusion outside directory $loadOrder = str_replace('../', '', t3lib_div::getURL($absoluteComponentPath . 'javascript/loadorder.txt')); $jsFilesOrdered = t3lib_div::trimExplode(LF, $loadOrder, TRUE); $jsFiles = array_merge($jsFilesOrdered, $jsFiles); } foreach ($jsFiles as $jsFile) { $this->pageRenderer->addJsFile($relativeComponentPath . 'javascript/' . $jsFile); } } }
/** * Define the template for the module * * @param string filename */ function setModuleTemplate($filename) { // Load Prototype lib for IE event $this->pageRenderer->loadPrototype(); $this->loadJavascriptLib('js/iecompatibility.js'); $this->moduleTemplate = $this->getHtmlTemplate($filename); }
/** * Gets instance of PageRenderer * * @return t3lib_PageRenderer */ public function getPageRenderer() { if (!isset($this->pageRenderer)) { $this->pageRenderer = t3lib_div::makeInstance('t3lib_PageRenderer'); $this->pageRenderer->setTemplateFile(PATH_tslib . 'templates/tslib_page_frontend.html'); $this->pageRenderer->setBackPath(TYPO3_mainDir); } return $this->pageRenderer; }
/** * Makes a collapseable section. See reports module for an example * * @param string $title * @param string $html * @param string $id * @param string $saveStatePointer * @return string */ public function collapseableSection($title, $html, $id, $saveStatePointer = '') { $hasSave = $saveStatePointer ? TRUE : FALSE; $collapsedStyle = $collapsedClass = ''; if ($hasSave) { /** @var $settings extDirect_DataProvider_BackendUserSettings */ $settings = t3lib_div::makeInstance('extDirect_DataProvider_BackendUserSettings'); $value = $settings->get($saveStatePointer . '.' . $id); if ($value) { $collapsedStyle = ' style="display: none"'; $collapsedClass = ' collapsed'; } else { $collapsedStyle = ''; $collapsedClass = ' expanded'; } } $this->pageRenderer->loadExtJS(); $this->pageRenderer->addExtOnReadyCode(' Ext.select("h2.section-header").each(function(element){ element.on("click", function(event, tag) { var state = 0, el = Ext.fly(tag), div = el.next("div"), saveKey = el.getAttribute("rel"); if (el.hasClass("collapsed")) { el.removeClass("collapsed").addClass("expanded"); div.slideIn("t", { easing: "easeIn", duration: .5 }); } else { el.removeClass("expanded").addClass("collapsed"); div.slideOut("t", { easing: "easeOut", duration: .5, remove: false, useDisplay: true }); state = 1; } if (saveKey) { try { top.TYPO3.BackendUserSettings.ExtDirect.set(saveKey + "." + tag.id, state, function(response) {}); } catch(e) {} } }); }); '); return ' <h2 id="' . $id . '" class="section-header' . $collapsedClass . '" rel="' . $saveStatePointer . '"> ' . $title . '</h2> <div' . $collapsedStyle . '>' . $html . '</div> '; }
/** * Main function of the module. Write the content to $this->content * If you chose "web" as main module, you will need to consider the $this->id parameter which will contain the uid-number of the page clicked in the page tree * * @return void */ function main() { global $BE_USER, $LANG, $BACK_PATH, $TCA_DESCR, $TCA, $CLIENT, $TYPO3_CONF_VARS; $PATH_TYPO3 = t3lib_div::getIndpEnv('TYPO3_SITE_URL') . 'typo3/'; if ($BE_USER->user["admin"]) { // find node $node_repository = tx_caretaker_NodeRepository::getInstance(); $node = $node_repository->id2node($this->node_id, true); if (!$node) { $node = $node_repository->getRootNode(); } // Draw the header. $this->doc = t3lib_div::makeInstance("template"); $this->doc->backPath = $BACK_PATH; $this->pageRenderer = $this->doc->getPageRenderer(); // Include Ext JS $this->pageRenderer->loadExtJS(); $this->pageRenderer->enableExtJSQuickTips(); $this->pageRenderer->addJsFile($BACK_PATH . t3lib_extMgm::extRelPath('caretaker') . 'res/js/tx.caretaker.js'); $panels = array(); foreach ($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['caretaker']['extJsBackendPanels'] as $extJsBackendPanel) { // register JS foreach ($extJsBackendPanel['jsIncludes'] as $jsInclude) { $filename = $BACK_PATH . '../' . str_replace(PATH_site, '', t3lib_div::getFileAbsFileName($jsInclude)); $this->pageRenderer->addJsFile($filename); } // register CSS foreach ($extJsBackendPanel['cssIncludes'] as $cssInclude) { $filename = $BACK_PATH . '../' . str_replace(PATH_site, '', t3lib_div::getFileAbsFileName($cssInclude)); $this->pageRenderer->addCssFile($filename); } // add ExtJs Panel $panels[$extJsBackendPanel['id']] = $extJsBackendPanel['xtype']; } $this->pageRenderer->addJsFile($BACK_PATH . t3lib_extMgm::extRelPath('caretaker') . 'res/js/tx.caretaker.NodeToolbar.js'); // Enable debug mode for Ext JS $this->pageRenderer->enableExtJsDebug(); // storage Pid $confArray = unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['caretaker']); $storagePid = (int) $confArray['storagePid']; //Add caretaker css $this->pageRenderer->addCssFile($BACK_PATH . t3lib_extMgm::extRelPath('caretaker') . 'res/css/tx.caretaker.overview.css'); $pluginItems = array(); foreach ($panels as $id => $xtype) { $pluginItems[] = '{ id: "' . $id . '", xtype: "' . $xtype . '" , back_path: back_path , node_id: node_id }'; } $this->pageRenderer->addJsInlineCode('Caretaker_Overview', ' Ext.state.Manager.setProvider(new Ext.state.CookieProvider()); Ext.namespace("tx","tx.caretaker"); Ext.QuickTips.init(); Ext.onReady( function() { var back_path = "' . $this->doc->backPath . '"; var back_url = "' . urlencode(t3lib_div::getIndpEnv('TYPO3_REQUEST_URL')) . '"; var path_typo3 = "' . t3lib_div::getIndpEnv('TYPO3_SITE_URL') . 'typo3/"; var add_url = "' . $PATH_TYPO3 . 'alt_doc.php?edit[###NODE_TYPE###][' . $storagePid . ']=new"; var node_id = "' . $node->getCaretakerNodeId() . '"; var node_type = "' . strtolower($node->getType()) . '"; var node_hidden = "' . $node->getHidden() . '"; var node_uid = "' . $node->getUid() . '"; var node_title = "' . htmlspecialchars($node->getTitle() ? $node->getTitle() : '[no title]') . '( ' . ($node->getTypeDescription() ? htmlspecialchars($node->getTypeDescription()) : $node->getType()) . ' )" ; var node_state = "' . $node->getTestResult()->getState() . '" ; var node_state_info = "' . $node->getTestResult()->getStateInfo() . '" ; tx.caretaker.view = new Ext.Viewport({ layout: "fit", items: { xtype : "panel", id : "node", autoScroll: true, title : node_title, iconCls : "icon-caretaker-type-" + node_type, tbar : { xtype: "caretaker-nodetoolbar", back_path: back_path, path_typo3: path_typo3, back_url: back_url, add_url :add_url, node_id: node_id, node_type: node_type, node_uid: node_uid, node_hidden: node_hidden, node_state: node_state, node_state_info: node_state_info }, items : [ { xtype : "panel", padding : "10", layout : "fit", id : "caretaker-panels", items : [ ' . implode(chr(10) . ',', $pluginItems) . chr(10) . ' ] } ], } }); }); '); $this->content .= $this->doc->startPage($LANG->getLL("title")); $this->doc->form = ''; } else { // If no access or if not admin $this->doc = t3lib_div::makeInstance("mediumDoc"); $this->doc->backPath = $BACK_PATH; $this->content .= $this->doc->startPage($LANG->getLL("title")); $this->content .= $this->doc->header($LANG->getLL("title")); $this->content .= $this->doc->spacer(5); $this->content .= $this->doc->spacer(10); } }
/** * Add a CSS file * * @param $file * @param string $rel * @param string $media * @param string $title * @param bool $compress * @param bool $forceOnTop * @param string $allWrap */ public function addCSSFile($file, $rel = 'stylesheet', $media = 'all', $title = '', $compress = false, $forceOnTop = false, $allWrap = '') { $this->pageRenderer->addCSSFile($this->getFileRelFileName($file), $rel, $media, $title, $compress, $forceOnTop, $allWrap); }
/** * Render module content * * @return string $content */ public function render() { /* Add CSS */ $this->pageRenderer->addCssFile($this->resPath . 'js/ux/css/GridFilters.css'); $this->pageRenderer->addCssFile($this->resPath . 'js/ux/css/RangeMenu.css'); $this->pageRenderer->addCssFile($this->resPath . 'css/t3_em.css'); $iconsGfxPath = $GLOBALS['TBE_STYLES']['skinImgAutoCfg']['relDir'] . 'gfx/'; $this->pageRenderer->addCssInlineBlock('em-t3skin-icons', ' .x-tree-node-leaf img.tree-edit { background-image:url(' . $iconsGfxPath . 'edit_file.gif);} .x-btn-edit { background-image:url(' . $iconsGfxPath . 'edit2.gif) !important;} .x-btn-new { background-image:url(' . $iconsGfxPath . 'new_el.gif) !important;} .x-btn-delete { background-image:url(' . $iconsGfxPath . 'garbage.gif) !important;} .x-tree-node-leaf img.tree-unknown { background-image:url(' . $iconsGfxPath . 'default.gif); } .x-btn-save { background-image:url(' . $iconsGfxPath . 'savedok.gif) !important;} .x-btn-upload { background-image:url(' . $iconsGfxPath . 'upload.gif) !important;} .x-btn-download { background-image:url(' . $iconsGfxPath . 'down.gif) !important;} .x-btn-undo { background-image:url(' . $this->resPath . 'icons/arrow_undo.png) !important;} .x-btn-redo { background-image:url(' . $this->resPath . 'icons/arrow_redo.png) !important;} .x-btn-jslint { background-image:url(' . $this->resPath . 'icons/jslint.gif) !important;} .x-btn-indent { background-image:url(' . $this->resPath . 'icons/text_indent.png) !important;} '); /* load ExtJS */ $this->pageRenderer->loadExtJS(); $this->pageRenderer->enableExtJSQuickTips(); // Load JavaScript: $this->pageRenderer->addJsFile($this->parentObject->doc->backPath . 'ajax.php?ajaxID=ExtDirect::getAPI&namespace=TYPO3.EM', NULL, FALSE); $this->pageRenderer->addJsFile($this->parentObject->doc->backPath . 'ajax.php?ajaxID=ExtDirect::getAPI&namespace=TYPO3.EMSOAP', NULL, FALSE); $this->pageRenderer->addExtDirectCode(); // Localization $labels = array(); $this->pageRenderer->addInlineLanguageLabelFile(t3lib_extMgm::extPath('em', 'language/locallang.xml')); $labels['yes'] = $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_common.xml:yes'); $labels['no'] = $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_common.xml:no'); $this->pageRenderer->addInlineLanguageLabelArray($labels); $globalSettings = unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['em']); if (!is_array($globalSettings)) { $globalSettings = array('displayMyExtensions' => 0, 'selectedLanguages' => array(), 'inlineToWindow' => 1); } $settings = $this->parentObject->MOD_SETTINGS; $mirrors = unserialize($settings['extMirrors']); $settings['extMirrors'] = array(array('Random (recommended)', '', '', '', '', '', '')); if (is_array($mirrors)) { foreach ($mirrors as $mirror) { $settings['extMirrors'][] = array($mirror['title'], $mirror['country'], $mirror['host'], $mirror['path'], $mirror['sponsor']['name'], $mirror['sponsor']['link'], $mirror['sponsor']['logo']); } } $allowRepositoryUpdate = !intval($GLOBALS['BE_USER']->getTSConfigVal('mod.tools_em.hideRepositoryUpdate')); /* file operations */ $fileAllowMove = intval($GLOBALS['BE_USER']->getTSConfigVal('mod.tools_em.fileAllowMove')); $fileAllowDelete = intval($GLOBALS['BE_USER']->getTSConfigVal('mod.tools_em.fileAllowDelete')); $fileAllowRename = intval($GLOBALS['BE_USER']->getTSConfigVal('mod.tools_em.fileAllowRename')); $fileAllowUpload = intval($GLOBALS['BE_USER']->getTSConfigVal('mod.tools_em.fileAllowUpload')); $fileAllowCreate = intval($GLOBALS['BE_USER']->getTSConfigVal('mod.tools_em.fileAllowCreate')); $fileAllowDownload = intval($GLOBALS['BE_USER']->getTSConfigVal('mod.tools_em.fileAllowDownload')); // add the settings $additionalSettings = array('siteUrl' => t3lib_div::getIndpEnv('TYPO3_SITE_URL'), 'backPath' => $this->parentObject->doc->backPath, 'hasCredentials' => isset($settings['fe_u']) && isset($settings['fe_p']) && $settings['fe_u'] !== '' && $settings['fe_p'] !== '', 'scriptLink' => $this->parentObject->script, 'editorCss' => $this->resPath . 'css/editor.css', 'codemirrorCssPath' => $this->parentObject->doc->backPath . 'contrib/codemirror/css/', 'codemirrorJsPath' => $this->parentObject->doc->backPath . 'contrib/codemirror/js/', 'codemirrorContribPath' => $this->parentObject->doc->backPath . 'contrib/codemirror/contrib/', 'selectedLanguages' => t3lib_div::trimExplode(',', $globalSettings['selectedLanguages'], TRUE), 'state' => $GLOBALS['BE_USER']->uc['moduleData']['tools_em']['States'], 'inlineToWindow' => $globalSettings['inlineToWindow'], 'allowRepositoryUpdate' => $allowRepositoryUpdate, 'displayMyExtensions' => $globalSettings['displayMyExtensions'], 'debug' => $GLOBALS['TYPO3_CONF_VARS']['BE']['debug'] > 0, 'fileAllowSave' => $GLOBALS['TYPO3_CONF_VARS']['EXT']['noEdit'] == 0, 'fileAllowMove' => 0, 'fileAllowDelete' => 0, 'fileAllowRename' => 0, 'fileAllowUpload' => 0, 'fileAllowCreate' => 0, 'fileAllowDownload' => $fileAllowDownload); $settings = array_merge($settings, $additionalSettings); // Add JS $this->pageRenderer->addJsFile($this->parentObject->doc->backPath . '../t3lib/js/extjs/ux/flashmessages.js'); $this->pageRenderer->addJsFile($this->parentObject->doc->backPath . 'js/extjs/iframepanel.js'); $this->pageRenderer->addJsFile($this->parentObject->doc->backPath . 'contrib/codemirror/js/codemirror.js'); //Plugins $this->pageRenderer->addJsFile($this->resPath . 'js/overrides/ext_overrides.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/ux/custom_plugins.js'); $this->pageRenderer->addJsFile($this->parentObject->doc->backPath . '../t3lib/js/extjs/ux/Ext.ux.FitToParent.js'); $this->pageRenderer->addJsFile($this->parentObject->doc->backPath . '../t3lib/js/extjs/notifications.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/ux/TreeState.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/ux/RowPanelExpander.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/ux/searchfield.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/ux/fileuploadfield.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/ux/menu/RangeMenu.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/ux/menu/ListMenu.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/ux/GridFilters.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/ux/filter/Filter.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/ux/filter/BooleanFilter.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/ux/filter/DateFilter.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/ux/filter/ListFilter.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/ux/filter/NumericFilter.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/ux/filter/StringFilter.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/ux/jslint.js'); //Scripts $this->pageRenderer->addJsFile($this->resPath . 'js/em_layouts.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/em_components.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/em_files.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/em_ter.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/em_tools.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/em_locallist.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/em_repositorylist.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/em_usertools.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/em_languages.js'); $this->pageRenderer->addJsFile($this->resPath . 'js/em_settings.js'); //Application $this->pageRenderer->addJsFile($this->resPath . 'js/em_app.js'); // clear flashmessages from php t3lib_FlashMessageQueue::getAllMessagesAndFlush(); $content = ' <div id="em-message-area"></div><div id="em-app"></div> <!-- dummy form to make configuration js happy --> <form name="tsStyleConfigForm" action="" method="post"></form> '; //hook for the extension manager gui if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['em/classes/class.tx_em_extensionamager.php']['renderHook'])) { foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['em/classes/class.tx_em_extensionamager.php']['renderHook'] as $classRef) { $hookObject = t3lib_div::getUserObj($classRef); if (!$hookObject instanceof tx_em_renderHook) { throw new UnexpectedValueException('$hookObject must implement interface tx_em_renderHook', 1298121373); } $hookObject->render($this->pageRenderer, $settings, $content); } } // render settings and labels $this->pageRenderer->addInlineSettingArray('EM', $settings); $this->pageRenderer->addInlineLanguageLabelArray($labels); return $content; }