HelpButton implements ButtonInterface, PositionInterface
HelpButton
The functionality has been removed in TYPO3 v12. The class will be removed in TYPO3 v13.
Renders a help button in the DocHeader which will be rendered to the right position using button group "99".
EXAMPLE USAGE TO ADD A HELP BUTTON:
$buttonBar = $this->moduleTemplate->getDocHeaderComponent()->getButtonBar(); $myButton = $buttonBar->makeHelpButton() ->setModuleName('xMOD_csh_corebe') ->setFieldName('list_module'); $buttonBar->addButton($myButton);
Table of Contents
Interfaces
- ButtonInterface
- Interface for buttons
- PositionInterface
- Interface for buttons
Properties
- $fieldName : string
- $moduleName : string
Methods
- __construct() : mixed
- Constructor for the HelpButton
- __toString() : string
- Renders the button
- getFieldName() : string
- Gets the name of the field.
- getGroup() : int
- Gets the button group.
- getModuleName() : string
- Gets the name of the module.
- getPosition() : string
- Gets the button position.
- getType() : string
- Gets the type of the button
- isValid() : bool
- Determines whether the button shall be rendered.
- render() : string
- Renders the button
- setFieldName() : HelpButton
- Sets the name of the field.
- setModuleName() : HelpButton
- Sets the name of the module.
Properties
$fieldName
protected
string
$fieldName
= ''
$moduleName
protected
string
$moduleName
Methods
__construct()
Constructor for the HelpButton
public
__construct() : mixed
__toString()
Renders the button
public
__toString() : string
Return values
stringgetFieldName()
Gets the name of the field.
public
getFieldName() : string
Return values
stringgetGroup()
Gets the button group.
public
getGroup() : int
Return values
intgetModuleName()
Gets the name of the module.
public
getModuleName() : string
Return values
stringgetPosition()
Gets the button position.
public
getPosition() : string
Return values
stringgetType()
Gets the type of the button
public
getType() : string
Return values
stringisValid()
Determines whether the button shall be rendered.
public
isValid() : bool
Depends on the defined module and field name.
Return values
boolrender()
Renders the button
public
render() : string
The functionality has been removed in v12. The method will be removed in TYPO3 v13.
Return values
stringsetFieldName()
Sets the name of the field.
public
setFieldName(string $fieldName) : HelpButton
Parameters
- $fieldName : string
Return values
HelpButtonsetModuleName()
Sets the name of the module.
public
setModuleName(string $moduleName) : HelpButton
Parameters
- $moduleName : string