Typo3:如何上载文件并创建文件引用? [英] Typo3: How to upload a file and create a file reference?

查看:62
本文介绍了Typo3:如何上载文件并创建文件引用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我将尝试在FE中上传一个文件(或以后的多个文件).可以像我当前的代码一样工作.但是,现在如何获取该文件的文件引用?

/**
 *
 * @var array $fileData
 * @var integer $feUserId
 * @return \TYPO3\CMS\Extbase\Domain\Model\FileReference
 */
private function uploadFile($fileData, $feUserId) {
    $storageRepository = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\\CMS\\Core\\Resource\\StorageRepository');
    $storage           = $storageRepository->findByUid(1); # Fileadmin = 1
    $saveFolder        = $storage->getFolder($this->settings['uploadFolder']);

    // Datei speichern
    $fileObject = $storage->addFile($fileData['tmp_name'], $saveFolder, $feUserId.'_'.$fileData['name']);

    // Dateiobjekt
    $repositoryFileObject = $storage->getFile($fileObject->getIdentifier());

    die(\TYPO3\CMS\Extbase\Utility\DebuggerUtility::var_dump($repositoryFileObject));
    #$newFileReference = $this->objectManager->get('TYPO3\CMS\Extbase\Domain\Model\FileReference');
    #$newFileReference->setOriginalResource($repositoryFileObject);

    return $newFileReference;
}

解决方案

目前应该有»setFileReference«之类的东西,但是我在API 解决方案

There should be something like »setFileReference« by now, but I can not find the like in the API http://typo3.org/api/typo3cms/class_t_y_p_o3_1_1_c_m_s_1_1_core_1_1_resource_1_1_file_reference.html

Well, you may wanna use the following script as temporary solution, which uses the datamap process to create file references.

$sys_file_uid = $file->getUid();
$tt_content_uid = 42;
$tt_content_pid = 1337;

// Do not directly insert a record into sys_file_reference, as this bypasses all sanity checks and automatic updates done!
$data = array();
$data['sys_file_reference']['NEW' . $sys_file_uid] = array(
    'uid_local' => $sys_file_uid,
    'table_local' => 'sys_file',
    'uid_foreign' => $tt_content_uid,
    'tablenames' => 'tt_content',
    'fieldname' => 'image',
    'pid' => $tt_content_pid,
);
$data['tt_content'][$tt_content_uid] = array('image' => 'NEW' . $sys_file_uid);

$tce = t3lib_div::makeInstance('t3lib_TCEmain'); // create TCE instance
$tce->start($data, array());
$tce->process_datamap();
if ($tce->errorLog) {
    // Error - Reference not created
    // t3lib_utility_Debug::viewArray($tce->errorLog);
}
else {
    // Success - Reference created
}

这篇关于Typo3:如何上载文件并创建文件引用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆