我正在尝试为新创建的用户添加新的文件挂载。是否可以使用 Typo3 中的 Datahandler?我尝试了以下方法,但它不起作用:
$file_data['sys_filemounts']['NEW'] = array(
'base' => 2,
'description' => '',
'hidden' => 0,
'read_only' => 0,
'title' => strtolower($userName[0]."-".$userName[1]),
'path' => '/user_upload/MPL-People/'.strtolower($userName[0]."-".$userName[1].'/'),
'tx_gdemployeeimport_adid' => $adid
);
$this->createDir($userName);
$this->datahandler->start($file_data,array());
$this->datahandler->process_datamap();
$this->datahandler->clear_cacheCmd('all');