class SlotsHelper extends Helper
SlotsHelper manages template slots.
Methods
|  setCharset(string $charset)  Sets the default charset.  |  from Helper | |
| string |  getCharset()  Gets the default charset.  |  from Helper | 
|  start(string $name)  Starts a new slot.  |  ||
|  stop()  Stops a slot.  |  ||
| bool |  has(string $name)  Returns true if the slot exists.  |  |
| string |  get(string $name, bool|string $default = false)  Gets the slot value.  |  |
|  set(string $name, string $content)  Sets a slot value.  |  ||
| bool |  output(string $name, bool|string $default = false)  Outputs a slot.  |  |
| string |  getName()  Returns the canonical name of this helper.  |  
Details
setCharset(string $charset)
Sets the default charset.
string getCharset()
Gets the default charset.
start(string $name)
Starts a new slot.
This method starts an output buffer that will be closed when the stop() method is called.
stop()
Stops a slot.
bool has(string $name)
Returns true if the slot exists.
string get(string $name, bool|string $default = false)
Gets the slot value.
set(string $name, string $content)
Sets a slot value.
bool output(string $name, bool|string $default = false)
Outputs a slot.
string getName()
Returns the canonical name of this helper.
Please login to continue.