[TYPO3] TSconfig: extended view as default

Tapio Markula tapio.markula at dnainternet.net
Fri Aug 25 19:46:37 CEST 2006


Ariane Gramm kirjoitti:
> Hello,
> 
> I found a solution to your problem concerning turning the extended view 
> on by default in typo3 3.8.1. I don't know whether you still didn't get 
> help but here's my working solution:
> 
> You only have to outcomment the following line in the file 
> typo3/db_list.php:
> 
> //        $dblist->allFields = ($this->MOD_SETTINGS['bigControlPanel'] 
> || $this->table) ? 1 : 0;
> 
> This should be written around line 213.
> Instead of this you will write:
> 
>         $this->MOD_SETTINGS['bigControlPanel']=true;

that could set
if(isset($this->modTSconfig['properties']['bigControlPanel'])
$this->MOD_SETTINGS['bigControlPanel'] = 
$this->modTSconfig['properties']['bigControlPanel'];

$dblist->allFields = ($this->MOD_SETTINGS['bigControlPanel'] || 
$this->table) ? 1 : 0;

when you can use TS Config for users/user group control this issue.
mod.web_list {
bigControlPanel= 1
}
or alternatively 0
I could add that to future versions of tm_contentaccess.



More information about the TYPO3-english mailing list