/**
* Set Alert element display style.
*
* @param string $value Alert display value.
*
* @return self Returns instance of the Alert element class.
*
* @access public
*/
public function d(string $value): self
Examples
Set Alert element display using fluent interface
use function Thermage\alert;
use function Thermage\render;
// ...
render(
alert('Stay RAD!')->d('block')
);
Set Alert element display using magic method fluent interface
use function Thermage\alert;
use function Thermage\render;
// ...
render(
alert('Stay RAD!')->dBlock()
);
Set Alert element width using magic classes pipeline
use function Thermage\alert;
use function Thermage\render;
// ...
render(
alert('Stay RAD!', 'd-block')
);
Terminal
$ php thermage.php
Stay RAD!
By default Alert element display state is block
, but you can change it to none
.
Getting Started
Methods
- danger Set Alert element type danger.
- display Set Alert element display style.
- getShortcodes Get Alert element shortcodes instance.
- getTheme Get Alert element theme.
- getValue Get Alert element value.
- info Set Alert element type info.
- primary Set Alert element type primary.
- render Render Alert element.
- secondary Set Alert element type secondary.
- setShortcodes Set Alert element shortcodes instance.
- setTheme Set Alert element theme instance.
- success Set Alert element type success.
- textAlign Set Alert element text align.
- value Set Alert element value.
- w Set Alert width.
- warning Set Alert element type warning.