Exemplo n.º 1
0
 /**
  * Main
  *
  * @return string
  */
 public function main()
 {
     $lang = $this->getLanguageService();
     $POST = GeneralUtility::_POST();
     // Checking for more than one template an if, set a menu...
     $manyTemplatesMenu = $this->pObj->templateMenu();
     $template_uid = 0;
     if ($manyTemplatesMenu) {
         $template_uid = $this->pObj->MOD_SETTINGS['templatesOnPage'];
     }
     $bType = $this->pObj->MOD_SETTINGS['ts_browser_type'];
     $existTemplate = $this->initialize_editor($this->pObj->id, $template_uid);
     // initialize
     $assigns = [];
     $assigns['LLPrefix'] = 'LLL:' . $this->localLanguageFilePath . ':';
     $assigns['existTemplate'] = $existTemplate;
     $assigns['tsBrowserType'] = $this->pObj->MOD_SETTINGS['ts_browser_type'];
     if ($existTemplate) {
         $assigns['templateRecord'] = $this->templateRow;
         $assigns['linkWrapTemplateTitle'] = $this->pObj->linkWrapTemplateTitle($this->templateRow['title'], $bType == 'setup' ? 'config' : 'constants');
         $assigns['manyTemplatesMenu'] = $manyTemplatesMenu;
         if ($POST['add_property'] || $POST['update_value'] || $POST['clear_object']) {
             // add property
             $line = '';
             if (is_array($POST['data'])) {
                 $name = key($POST['data']);
                 if ($POST['data'][$name]['name'] !== '') {
                     // Workaround for this special case: User adds a key and submits by pressing the return key. The form however will use "add_property" which is the name of the first submit button in this form.
                     unset($POST['update_value']);
                     $POST['add_property'] = 'Add';
                 }
                 if ($POST['add_property']) {
                     $property = trim($POST['data'][$name]['name']);
                     if (preg_replace('/[^a-zA-Z0-9_\\.]*/', '', $property) != $property) {
                         $badPropertyMessage = GeneralUtility::makeInstance(FlashMessage::class, $lang->getLL('noSpaces') . $lang->getLL('nothingUpdated'), $lang->getLL('badProperty'), FlashMessage::ERROR);
                         $this->addFlashMessage($badPropertyMessage);
                     } else {
                         $pline = $name . '.' . $property . ' = ' . trim($POST['data'][$name]['propertyValue']);
                         $propertyAddedMessage = GeneralUtility::makeInstance(FlashMessage::class, $pline, $lang->getLL('propertyAdded'));
                         $this->addFlashMessage($propertyAddedMessage);
                         $line .= LF . $pline;
                     }
                 } elseif ($POST['update_value']) {
                     $pline = $name . ' = ' . trim($POST['data'][$name]['value']);
                     $updatedMessage = GeneralUtility::makeInstance(FlashMessage::class, $pline, $lang->getLL('valueUpdated'));
                     $this->addFlashMessage($updatedMessage);
                     $line .= LF . $pline;
                 } elseif ($POST['clear_object']) {
                     if ($POST['data'][$name]['clearValue']) {
                         $pline = $name . ' >';
                         $objectClearedMessage = GeneralUtility::makeInstance(FlashMessage::class, $pline, $lang->getLL('objectCleared'));
                         $this->addFlashMessage($objectClearedMessage);
                         $line .= LF . $pline;
                     }
                 }
             }
             if ($line) {
                 $saveId = $this->templateRow['_ORIG_uid'] ?: $this->templateRow['uid'];
                 // Set the data to be saved
                 $recData = [];
                 $field = $bType == 'setup' ? 'config' : 'constants';
                 $recData['sys_template'][$saveId][$field] = $this->templateRow[$field] . $line;
                 // Create new  tce-object
                 $tce = GeneralUtility::makeInstance(DataHandler::class);
                 // Initialize
                 $tce->start($recData, []);
                 // Saved the stuff
                 $tce->process_datamap();
                 // Clear the cache (note: currently only admin-users can clear the cache in tce_main.php)
                 $tce->clear_cacheCmd('all');
                 // re-read the template ...
                 $this->initialize_editor($this->pObj->id, $template_uid);
             }
         }
     }
     $tsbr = GeneralUtility::_GET('tsbr');
     $update = 0;
     if (is_array($tsbr)) {
         // If any plus-signs were clicked, it's registred.
         $this->pObj->MOD_SETTINGS['tsbrowser_depthKeys_' . $bType] = $this->templateService->ext_depthKeys($tsbr, $this->pObj->MOD_SETTINGS['tsbrowser_depthKeys_' . $bType]);
         $update = 1;
     }
     if ($POST['Submit']) {
         // If any POST-vars are send, update the condition array
         $this->pObj->MOD_SETTINGS['tsbrowser_conditions'] = $POST['conditions'];
         $update = 1;
     }
     if ($update) {
         $this->getBackendUserAuthentication()->pushModuleData($this->pObj->MCONF['name'], $this->pObj->MOD_SETTINGS);
     }
     $this->templateService->matchAlternative = $this->pObj->MOD_SETTINGS['tsbrowser_conditions'];
     $this->templateService->matchAlternative[] = 'dummydummydummydummydummydummydummydummydummydummydummy';
     // This is just here to make sure that at least one element is in the array so that the tsparser actually uses this array to match.
     $this->templateService->constantMode = $this->pObj->MOD_SETTINGS['ts_browser_const'];
     if ($this->pObj->sObj && $this->templateService->constantMode) {
         $this->templateService->constantMode = 'untouched';
     }
     $this->templateService->regexMode = $this->pObj->MOD_SETTINGS['ts_browser_regexsearch'];
     $this->templateService->fixedLgd = $this->pObj->MOD_SETTINGS['ts_browser_fixedLgd'];
     $this->templateService->linkObjects = true;
     $this->templateService->ext_regLinenumbers = true;
     $this->templateService->ext_regComments = $this->pObj->MOD_SETTINGS['ts_browser_showComments'];
     $this->templateService->bType = $bType;
     if ($this->pObj->MOD_SETTINGS['ts_browser_type'] == 'const') {
         $this->templateService->ext_constants_BRP = (int) GeneralUtility::_GP('breakPointLN');
     } else {
         $this->templateService->ext_config_BRP = (int) GeneralUtility::_GP('breakPointLN');
     }
     $this->templateService->generateConfig();
     if ($bType == 'setup') {
         $theSetup = $this->templateService->setup;
     } else {
         $theSetup = $this->templateService->setup_constants;
     }
     // EDIT A VALUE:
     $assigns['typoScriptPath'] = $this->pObj->sObj;
     if ($this->pObj->sObj) {
         list($theSetup, $theSetupValue) = $this->templateService->ext_getSetup($theSetup, $this->pObj->sObj ? $this->pObj->sObj : '');
         $assigns['theSetupValue'] = $theSetupValue;
         if ($existTemplate === false) {
             $noTemplateMessage = GeneralUtility::makeInstance(FlashMessage::class, $lang->getLL('noCurrentTemplate'), $lang->getLL('edit'), FlashMessage::ERROR);
             $this->addFlashMessage($noTemplateMessage);
         }
         // Links:
         $urlParameters = ['id' => $this->pObj->id];
         $aHref = BackendUtility::getModuleUrl('web_ts', $urlParameters);
         $assigns['moduleUrl'] = BackendUtility::getModuleUrl('web_ts', $urlParameters);
         $assigns['isNotInTopLevelKeyList'] = !isset($this->pObj->MOD_SETTINGS['ts_browser_TLKeys_' . $bType][$this->pObj->sObj]);
         $assigns['hasProperties'] = !empty($theSetup);
         if (!$this->pObj->MOD_SETTINGS['ts_browser_TLKeys_' . $bType][$this->pObj->sObj]) {
             if (!empty($theSetup)) {
                 $assigns['moduleUrlObjectListAction'] = $aHref . '&addKey[' . rawurlencode($this->pObj->sObj) . ']=1&SET[ts_browser_toplevel_' . $bType . ']=' . rawurlencode($this->pObj->sObj);
             }
         } else {
             $assigns['moduleUrlObjectListAction'] = $aHref . '&addKey[' . rawurlencode($this->pObj->sObj) . ']=0&SET[ts_browser_toplevel_' . $bType . ']=0';
         }
     } else {
         $this->templateService->tsbrowser_depthKeys = $this->pObj->MOD_SETTINGS['tsbrowser_depthKeys_' . $bType];
         if (GeneralUtility::_POST('search') && GeneralUtility::_POST('search_field')) {
             // If any POST-vars are send, update the condition array
             $searchString = GeneralUtility::_POST('search_field');
             try {
                 $this->templateService->tsbrowser_depthKeys = $this->templateService->ext_getSearchKeys($theSetup, '', $searchString, []);
             } catch (Exception $e) {
                 $this->addFlashMessage(GeneralUtility::makeInstance(FlashMessage::class, sprintf($lang->getLL('error.' . $e->getCode()), $searchString), '', FlashMessage::ERROR));
             }
         }
         $assigns['hasTsBrowserTypes'] = is_array($this->pObj->MOD_MENU['ts_browser_type']) && count($this->pObj->MOD_MENU['ts_browser_type']) > 1;
         if (is_array($this->pObj->MOD_MENU['ts_browser_type']) && count($this->pObj->MOD_MENU['ts_browser_type']) > 1) {
             $assigns['browserTypeDropdownMenu'] = BackendUtility::getDropdownMenu($this->pObj->id, 'SET[ts_browser_type]', $bType, $this->pObj->MOD_MENU['ts_browser_type']);
         }
         $assigns['hasTopLevelInObjectList'] = is_array($this->pObj->MOD_MENU['ts_browser_toplevel_' . $bType]) && count($this->pObj->MOD_MENU['ts_browser_toplevel_' . $bType]) > 1;
         if (is_array($this->pObj->MOD_MENU['ts_browser_toplevel_' . $bType]) && count($this->pObj->MOD_MENU['ts_browser_toplevel_' . $bType]) > 1) {
             $assigns['objectListDropdownMenu'] = BackendUtility::getDropdownMenu($this->pObj->id, 'SET[ts_browser_toplevel_' . $bType . ']', $this->pObj->MOD_SETTINGS['ts_browser_toplevel_' . $bType], $this->pObj->MOD_MENU['ts_browser_toplevel_' . $bType]);
         }
         $assigns['regexSearchCheckbox'] = BackendUtility::getFuncCheck($this->pObj->id, 'SET[ts_browser_regexsearch]', $this->pObj->MOD_SETTINGS['ts_browser_regexsearch'], '', '', 'id="checkTs_browser_regexsearch"');
         $assigns['postSearchField'] = $POST['search_field'];
         $theKey = $this->pObj->MOD_SETTINGS['ts_browser_toplevel_' . $bType];
         if (!$theKey || !str_replace('-', '', $theKey)) {
             $theKey = '';
         }
         list($theSetup, $theSetupValue) = $this->templateService->ext_getSetup($theSetup, $this->pObj->MOD_SETTINGS['ts_browser_toplevel_' . $bType] ? $this->pObj->MOD_SETTINGS['ts_browser_toplevel_' . $bType] : '');
         $tree = $this->templateService->ext_getObjTree($theSetup, $theKey, '', '', $theSetupValue, $this->pObj->MOD_SETTINGS['ts_browser_alphaSort']);
         $tree = $this->templateService->substituteCMarkers($tree);
         $urlParameters = ['id' => $this->pObj->id];
         $aHref = BackendUtility::getModuleUrl('web_ts', $urlParameters);
         // Parser Errors:
         $pEkey = $bType == 'setup' ? 'config' : 'constants';
         $assigns['hasParseErrors'] = !empty($this->templateService->parserErrors[$pEkey]);
         if (!empty($this->templateService->parserErrors[$pEkey])) {
             $assigns['showErrorDetailsUri'] = $aHref . '&SET[function]=TYPO3\\CMS\\Tstemplate\\Controller\\TemplateAnalyzerModuleFunctionController&template=all&SET[ts_analyzer_checkLinenum]=1#line-';
             $assigns['parseErrors'] = $this->templateService->parserErrors[$pEkey];
         }
         if (isset($this->pObj->MOD_SETTINGS['ts_browser_TLKeys_' . $bType][$theKey])) {
             $assigns['moduleUrlRemoveFromObjectList'] = $aHref . '&addKey[' . $theKey . ']=0&SET[ts_browser_toplevel_' . $bType . ']=0';
         }
         $assigns['hasKeySelected'] = $theKey !== '';
         if ($theKey) {
             $assigns['treeLabel'] = $theKey;
         } else {
             $assigns['rootLLKey'] = $bType === 'setup' ? 'setupRoot' : 'constantRoot';
         }
         $assigns['tsTree'] = $tree;
         // second row options
         $assigns['isSetupAndCropLinesDisabled'] = $bType == 'setup' && !$this->pObj->MOD_SETTINGS['ts_browser_fixedLgd'];
         $assigns['checkBoxShowComments'] = BackendUtility::getFuncCheck($this->pObj->id, 'SET[ts_browser_showComments]', $this->pObj->MOD_SETTINGS['ts_browser_showComments'], '', '', 'id="checkTs_browser_showComments"');
         $assigns['checkBoxAlphaSort'] = BackendUtility::getFuncCheck($this->pObj->id, 'SET[ts_browser_alphaSort]', $this->pObj->MOD_SETTINGS['ts_browser_alphaSort'], '', '', 'id="checkTs_browser_alphaSort"');
         $assigns['checkBoxCropLines'] = BackendUtility::getFuncCheck($this->pObj->id, 'SET[ts_browser_fixedLgd]', $this->pObj->MOD_SETTINGS['ts_browser_fixedLgd'], '', '', 'id="checkTs_browser_fixedLgd"');
         if ($bType == 'setup' && !$this->pObj->MOD_SETTINGS['ts_browser_fixedLgd']) {
             $assigns['dropdownDisplayConstants'] = BackendUtility::getDropdownMenu($this->pObj->id, 'SET[ts_browser_const]', $this->pObj->MOD_SETTINGS['ts_browser_const'], $this->pObj->MOD_MENU['ts_browser_const']);
         }
         // Conditions:
         $assigns['hasConditions'] = is_array($this->templateService->sections) && !empty($this->templateService->sections);
         if (is_array($this->templateService->sections) && !empty($this->templateService->sections)) {
             $tsConditions = [];
             foreach ($this->templateService->sections as $key => $val) {
                 $tsConditions[] = ['key' => $key, 'value' => $val, 'label' => $this->templateService->substituteCMarkers(htmlspecialchars($val)), 'isSet' => $this->pObj->MOD_SETTINGS['tsbrowser_conditions'][$key] ? true : false];
             }
             $assigns['tsConditions'] = $tsConditions;
         }
         // Ending section displayoptions
     }
     $view = GeneralUtility::makeInstance(StandaloneView::class);
     $view->setTemplatePathAndFilename(GeneralUtility::getFileAbsFileName('EXT:tstemplate/Resources/Private/Templates/TemplateObjectBrowserModuleFunction.html'));
     $view->assignMultiple($assigns);
     return $view->render();
 }