Discussion:
[TYPO3-english] Backend layout No edit access
Naberd Zendi
2017-05-05 11:48:14 UTC
Permalink
Have bootstrap core and bootstrap package as wel as grid elements and bootstrap grid elements installed.

have removed templates and backend layouts which where coming with bootstrap package.

have my own plugin which adds backend layouts.

now i have issue when i enter a colPos above 20 i have no edit access on it.

ideas how to fix it ? typo3 is ver 7.6.18
Naberd Zendi
2017-08-07 14:12:55 UTC
Permalink
wel not sure wth is wrong there, had to modify core file

/typo3/sysext/backend/Classes/View/PageLayoutView.php

} elseif (isset($columnConfig['colPos']) && $columnConfig['colPos'] !== ''
&& !GeneralUtility::inList($this->tt_contentConfig['activeCols'], $columnConfig['colPos'])
) {
$grid .= $this->tt_content_drawColHeader($this->getLanguageService()->sL($columnConfig['name'])
. ' (' . $this->getLanguageService()->getLL('noAccess') . ')', '', '');
and instead of noAccess message i set there to return normal values
$grid .= $head[$columnKey] . $content[$columnKey];

Loading...