Code:
<?php if (!defined('TL_ROOT')) die('You can not access this file directly!');
/**
* Table tl_content
*/
$GLOBALS['TL_DCA']['tl_content']['palettes']['fb_downloadartikel'] = '{type_legend},type,headline;{recommendation_legend},fb_downloadartikel_artikelname,fb_downloadartikel_artikelbeschreibung,
fb_downloadartikel_nummer,fb_downloadartikel_preis,fb_downloadartikel_paypalemail;{protected_legend:hide},protected;{expert_legend},{expert_legend:hide},guests,cssID,space';
$GLOBALS['TL_DCA']['tl_content']['fields']['fb_downloadartikel_artikelname'] = array
(
'label' => &$GLOBALS['TL_LANG']['tl_content']['fb_downloadartikel_artikelname'],
'default' => &$GLOBALS['TL_LANG']['tl_content']['fb_downloadartikel_artikelname_text'],
'exclude' => true,
'inputType' => 'text',
'eval' => array('mandatory'=>true, 'allowHtml' => false, 'tl_class'=>'w32')
);
$GLOBALS['TL_DCA']['tl_content']['fields']['fb_downloadartikel_artikelbeschreibung'] = array
(
'label' => &$GLOBALS['TL_LANG']['tl_content']['fb_downloadartikel_artikelbeschreibung'],
'default' => &$GLOBALS['TL_LANG']['tl_content']['fb_downloadartikel_artikelbeschreibung_text'],
'exclude' => true,
'inputType' => 'textarea',
'eval' => array('mandatory'=>true, 'allowHtml' => false, 'rows' => 10, 'cols' => 80, 'tl_class'=>'long')
);
$GLOBALS['TL_DCA']['tl_content']['fields']['fb_downloadartikel_nummer'] = array
(
'label' => &$GLOBALS['TL_LANG']['tl_content']['fb_downloadartikel_nummer'],
'default' => &$GLOBALS['TL_LANG']['tl_content']['fb_downloadartikel_nummer_text'],
'exclude' => true,
'inputType' => 'text',
'eval' => array('mandatory'=>true, 'allowHtml' => false, 'tl_class'=>'w10')
);
$GLOBALS['TL_DCA']['tl_content']['fields']['fb_downloadartikel_preis'] = array
(
'label' => &$GLOBALS['TL_LANG']['tl_content']['fb_downloadartikel_preis'],
'default' => &$GLOBALS['TL_LANG']['tl_content']['fb_downloadartikel_preis_text'],
'exclude' => true,
'inputType' => 'text',
'eval' => array('mandatory'=>true, 'allowHtml' => false, 'tl_class'=>'w10')
);
$GLOBALS['TL_DCA']['tl_content']['fields']['fb_downloadartikel_paypalemail'] = array
(
'label' => &$GLOBALS['TL_LANG']['tl_content']['fb_downloadartikel_fb_downloadartikel_paypalemail'],
'default' => &$GLOBALS['TL_LANG']['tl_content']['fb_downloadartikel_paypalemail_text'],
'exclude' => true,
'inputType' => 'text',
'eval' => array('mandatory'=>true, 'allowHtml' => false, 'tl_class'=>'w100')
/**
* Class tl_content_fb_downloadartikel
*
* inhaltselement Dowenload-Artikel der per Paypal freigeschaltet wird
* @copyright maxi62 2009
* @author maxi62 2009
* @package ???
*/
class tl_content_fb_downloadartikel extends Backend
{
}
?>