新しく作成されたユーザーに新しいファイルマウントを追加しようとしています。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');