QuickForm
extends Component
in package
Table of Contents
- $classes : mixed
- $id : mixed
- $overlayColor : mixed
- $title : mixed
- $triggerColor : mixed
- $triggerIcon : mixed
- $triggerLabel : mixed
- __construct() : mixed
- Create a new component instance
- render() : View|string
- Get the view / contents that represent the component.
Properties
$classes
public
mixed
$classes
$id
public
mixed
$id
$overlayColor
public
mixed
$overlayColor
$title
public
mixed
$title
$triggerColor
public
mixed
$triggerColor
$triggerIcon
public
mixed
$triggerIcon
$triggerLabel
public
mixed
$triggerLabel
Methods
__construct()
Create a new component instance
public
__construct(string $title[, string $triggerIcon = "fas fa-plus" ][, string $triggerColor = "primary" ][, mixed $triggerLabel = null ][, string $size = 'normal' ][, string $direction = 'left' ][, string $overlayColor = "dark" ]) : mixed
Parameters
- $title : string
-
- Title of form
- $triggerIcon : string = "fas fa-plus"
-
- Trigger button icon
- $triggerColor : string = "primary"
-
- Trigger button color (bulma color)
- $triggerLabel : mixed = null
- $size : string = 'normal'
-
- Size of container (normal | medium | large)
- $direction : string = 'left'
-
- Direction of container (left | right)
- $overlayColor : string = "dark"
-
- Overlay color (bulma color)
Return values
mixed —render()
Get the view / contents that represent the component.
public
render() : View|string