2017-01-15 89 views
0

我想要一個只渲染圖像的自定義元素。 我已經創建了自定義擴展。Typoscript自定義內容獲取模板中的媒體圖像

這是我得到:

ext_tables.php

\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig(' 
mod.wizards.newContentElement.wizardItems.common.elements { 
    cce_teaser { 
     icon = EXT:core/Resources/Public/Icons/T3Icons/content/content-image.svg 
     title = Produkt Bild 
     description = Hauptbild auf der Produktseite 
     tt_content_defValues.CType = product_image 
    } 
} 
mod.wizards.newContentElement.wizardItems.common.show := addToList(cce_teaser) 
'); 

$TCA['tt_content']['columns']['CType']['config']['items'][] = 
    array(
    'Custom Content Elements', 
    '--div--' 
); 

$TCA['tt_content']['columns']['CType']['config']['items'][] = 
    array(
    'Hauptbild auf der Produktseite', 
    'product_image', 
     \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extRelPath($_EXTKEY) . 'ext_icon.gif' 
); 

$TCA['tt_content']['types']['product_image']['showitem'] = ' 
    --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.general;general, 
    --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.header;header, 
    --div--;Text, 
    bodytext;Text;;richtext:rte_transform[flag=rte_enabled|mode=ts_css], rte_enabled;LLL:EXT:cms/locallang_ttc.xml:rte_enabled_formlabel, 
    --div--;Bilder, 
    image, 
    --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.access, 
    --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.visibility;visibility, 
    --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.access;access, 
'; 

這工作,我得到:

Custom Image Element in Backend

2000_product_page.t3s

tt_content.product_image = COA 
tt_content.product_image { 
    10 = FLUIDTEMPLATE 
    10 { 
    file = {$resDir}/Private/Templates/ProductDetailImage.html 
    partialRootPath = {$resDir}/Private/Partials 
    layoutRootPath = {$resDir}/Private/Layouts 
    } 
} 

ProductDetailImage.html

<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" xmlns:ce="http://typo3.org/ns/TYPO3/CMS/FluidStyledContent/ViewHelpers" data-namespace-typo3-fluid="true"> 
<h1>Test</h1> 

<f:debug>{data}</f:debug> 
<!-- HOW CAN I GET THE IMAGE INFORMATIONS? SRC, TITLE, WITH, HEIGHT ... --> 

</html> 

模板ProductDetailImage.html被渲染,但我不知道如何獲得的圖像數據。 有人知道我必須做什麼嗎?請幫忙!

謝謝大家的幫助!

回答

0

如果使用FAL正確配置了圖像上傳字段,因爲TYPO3 7.6可以在FLUIDTEMPLATE中使用處理器。要獲取圖像數據,您可以使用ViewHelper或這些處理器。看看這裏的FilesProcessor:https://docs.typo3.org/typo3cms/TyposcriptReference/ContentObjects/Fluidtemplate/Index.html

+0

嗨保羅,thx爲您的答案! 你能解釋我更多關於「如果你的圖像上傳字段配置正確使用FAL ??? 你能舉一個簡單的例子嗎? – Grauzone

+0

你有一個工作的」上傳/選擇文件「字段內的ContentObject? ist保存選定的文件是否正確? 您的TCA配置爲顯示字段「image」,我目前不確定這是否字段仍然存在於TYPO3中或已被重命名。但是如果您有圖像的字段,是與它的罰款 –

+0

呀它的一切是正確的,我只需要一個暗示 – Grauzone

相關問題