/**
  * Initialization of object
  * PHP5 constructor
  *
  * @return	void
  */
 function __construct()
 {
     parent::__construct();
     $this->paramName['setFolder'] = 'SET[tx_dam_folder]';
     $this->showMultiActions = false;
     $this->showAction = false;
     $this->showIcon = true;
     $this->clearColumns();
     $this->addColumn('title', $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_file_list.xml:c_file'));
     $this->addColumn('file_type', $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_file_list.xml:c_fileext'));
     $this->addColumn('mtime', $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_file_list.xml:c_tstamp'));
     $this->addColumn('size', $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_file_list.xml:c_size'));
     $this->columnTDAttr['size'] = ' align="right"';
     $this->addColumn('perms', $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_file_list.xml:c_rw'));
     $this->addColumn('_CONTROL_', '');
     #		$this->addColumn('_CLIPBOARD_', '');
     // todo Clipboard
     $this->elementAttr['table'] = ' border="0" cellpadding="0" cellspacing="0" style="width:100%" class="typo3-dblist typo3-filelist"';
 }
 /**
  * Initialization of object
  * PHP5 constructor
  *
  * @return	void
  */
 function __construct()
 {
     parent::__construct();
     $this->showMultiActions = false;
     $this->showAction = false;
     $this->showIcon = false;
     $this->paramName['setFolder'] = 'SET[tx_dam_folder]';
 }
 /**
  * Initialization of object
  * PHP5 constructor
  *
  * @return	void
  */
 function __construct()
 {
     global $BE_USER;
     parent::__construct();
     $this->elementAttr['table'] = ' border="0" cellpadding="0" cellspacing="0" style="width:100%" class="typo3-dblist"';
     $this->showMultiActions = false;
     $this->showAction = true;
     $this->showIcon = true;
     $this->calcPerms = $GLOBALS['SOBE']->calcPerms;
 }