Constants |
public PHPFUI\Base::DEBUG_SOURCE = 1 |
Methods |
public PHPFUI\Base::__clone() |
public __construct(PHPFUI\HTML5Element $mainContent) |
public PHPFUI\Base::__toString() : string |
public PHPFUI\Base::add(?mixed $item) : static Base add function. Adds to the end of the current objects - param mixed $item should be convertable to string
|
public PHPFUI\Base::addAsFirst(?mixed $item) : static Base addAsFirst function. Adds to the front of the current
object - param mixed $item should be convertable to string
|
public addOff(PHPFUI\HTML5Element $content, PHPFUI\HTML5Element $toggle) : string Add something off the canvas to come in when the toggle is
activated. - param \HTML5Element $content what you want to slide in from
off canvas
- param \HTML5Element $toggle what to toggle to get the off
canvas piece to slide in
- return string id of the content added. Used to specify
postion and transition attributes
|
public addWrapper() : static |
public PHPFUI\Base::count() : int Number of object in this object. Does not count sub objects. |
public PHPFUI\Base::done(bool $done = true) : static |
public static PHPFUI\Base::getDebug(int $flags = 0) : int Gets the current debug setting |
public PHPFUI\Base::getResponse() : string |
public PHPFUI\Base::isDone() : bool Returns true if the page needs no more processing |
public PHPFUI\Base::prepend(?mixed $item) : static Add an object in front of existing object |
public static PHPFUI\Base::setDebug(int $level = 0) : void Set the debug level, 1 or higher is on |
public setPosition(string $id, string $position) : static Set the incoming canvas position - param string $id id from addOff when the off canvas was
added.
- param string $position one of ['left', 'right', 'top',
'bottom']
|
public PHPFUI\Base::setRawResponse(string $response, bool $asJSON = true) : static Sets the page response directly and exits the program |
public PHPFUI\Base::setResponse(string $response, string $color = 'lime') : static Set a response in the standard format ('reponse' and 'color' array)
exit will be called after returning the encoded response - param string $response to return
- param string $color used for the save button
- return never|static
|
public setTransition(string $id, string $transition) : static Set the transition canvas position - param string $id id from addOff when the off canvas was
added.
- param string $transition one of ['over', 'push']
|
public PHPFUI\Base::walk(string $method, ?mixed $argument = NULL) : static Recursively walks all objects and calls the passed method on each object where it exists - param string $method to call on the object in the collection
- param mixed $argument to pass to the method
|