‪TYPO3CMS  10.4
TYPO3\CMS\Backend\Form\Element\TextTableElement Class Reference
Inheritance diagram for TYPO3\CMS\Backend\Form\Element\TextTableElement:
TYPO3\CMS\Backend\Form\Element\AbstractFormElement TYPO3\CMS\Backend\Form\AbstractNode TYPO3\CMS\Backend\Form\NodeInterface

Public Member Functions

array render ()
 
- ‪Public Member Functions inherited from ‪TYPO3\CMS\Backend\Form\Element\AbstractFormElement
 __construct (NodeFactory $nodeFactory, array $data)
 

Protected Member Functions

BackendUserAuthentication getBackendUserAuthentication ()
 
- ‪Protected Member Functions inherited from ‪TYPO3\CMS\Backend\Form\Element\AbstractFormElement
array renderFieldInformation ()
 
array renderFieldControl ()
 
array renderFieldWizard ()
 
bool hasNullCheckboxButNoPlaceholder ()
 
bool hasNullCheckboxWithPlaceholder ()
 
string formatValue ($format, $itemValue, $formatOptions=[])
 
int formMaxWidth ($size=48)
 
string checkBoxParams ($itemName, $formElementValue, $checkbox, $checkboxesCount, $additionalJavaScript='')
 
array calculateColumnMarkup (int $cols)
 
string appendValueToLabelInDebugMode ($label, $value)
 
LanguageService getLanguageService ()
 
BackendUserAuthentication getBackendUser ()
 
- ‪Protected Member Functions inherited from ‪TYPO3\CMS\Backend\Form\AbstractNode
array initializeResultArray ()
 
array mergeChildReturnIntoExistingResult (array $existing, array $childReturn, bool $mergeHtml=true)
 
string getValidationDataAsJsonString (array $config)
 

Protected Attributes

array $defaultFieldInformation
 
array $defaultFieldWizard
 
array $defaultFieldControl
 
int $charactersPerRow = 40
 
- ‪Protected Attributes inherited from ‪TYPO3\CMS\Backend\Form\Element\AbstractFormElement
int $defaultInputWidth = 30
 
int $minimumInputWidth = 10
 
int $maxInputWidth = 50
 
IconFactory $iconFactory
 
- ‪Protected Attributes inherited from ‪TYPO3\CMS\Backend\Form\AbstractNode
NodeFactory $nodeFactory
 
array $data = array( )
 
array $defaultFieldInformation = array( )
 
array $defaultFieldControl = array( )
 
array $defaultFieldWizard = array( )
 

Detailed Description

Generation of TCEform elements of the type "text"

Definition at line 26 of file TextTableElement.php.

Member Function Documentation

◆ getBackendUserAuthentication()

BackendUserAuthentication TYPO3\CMS\Backend\Form\Element\TextTableElement::getBackendUserAuthentication ( )
protected
Returns
‪BackendUserAuthentication

Definition at line 230 of file TextTableElement.php.

References $GLOBALS.

Referenced by TYPO3\CMS\Backend\Form\Element\TextTableElement\render().

◆ render()

Member Data Documentation

◆ $charactersPerRow

int TYPO3\CMS\Backend\Form\Element\TextTableElement::$charactersPerRow = 40
protected

The number of chars expected per row when the height of a text area field is automatically calculated based on the number of characters found in the field content.

Definition at line 75 of file TextTableElement.php.

◆ $defaultFieldControl

array TYPO3\CMS\Backend\Form\Element\TextTableElement::$defaultFieldControl
protected
Initial value:
= array(
'tableWizard' => [
'renderType' => 'tableWizard',
],
)

This renderType adds the "table wizard icon" by default (on not new records)

Definition at line 64 of file TextTableElement.php.

◆ $defaultFieldInformation

array TYPO3\CMS\Backend\Form\Element\TextTableElement::$defaultFieldInformation
protected
Initial value:
= array(
'tcaDescription' => [
'renderType' => 'tcaDescription',
],
)

Default field information enabled for this element.

Definition at line 32 of file TextTableElement.php.

◆ $defaultFieldWizard

array TYPO3\CMS\Backend\Form\Element\TextTableElement::$defaultFieldWizard
protected
Initial value:
= array(
'localizationStateSelector' => [
'renderType' => 'localizationStateSelector',
],
'otherLanguageContent' => [
'renderType' => 'otherLanguageContent',
'after' => [
'localizationStateSelector'
],
],
'defaultLanguageDifferences' => [
'renderType' => 'defaultLanguageDifferences',
'after' => [
'otherLanguageContent',
],
],
)

Default field wizards enabled for this element.

Definition at line 42 of file TextTableElement.php.