Ferreteria/v0.5/@cls/cKiosk: Difference between revisions

From Woozle Writes Code
< Ferreteria‎ | v0.5‎ | @cls
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 21: Line 21:
|
|
| RETURNS: The string from which all input arguments may be parsed
| RETURNS: The string from which all input arguments may be parsed
* This format can be overridden if you want to get the string from somewhere else, such as a ?query\
* This format can be overridden if you want to get the string from somewhere else, such as a ?query
|-
|-
| public || DumpFull() : string
| public || DumpFull() : string
|}
|}

Revision as of 15:32, 17 October 2022

class menu\cKiosk

Methods

access function name code (if short) purpose
public __construct(string $wp) { $this->SetPath($wp); }
protected SetPath(string $wp) { $this->wp = ltrim($wp,'/'); } make it a relative path
public GetAbsolutePath($doEndSlash) : string
public GetRelativePath(bool $doEndSlash) : string
public MakeURLFromString(string $sPath) : string RETURNS: The full URL for the given input string
  • This format can be overridden if you want the string to be presented some other way, such as in a ?query
public GetInputString(bool $doEndSlash) : string RETURNS: The string from which all input arguments may be parsed
  • This format can be overridden if you want to get the string from somewhere else, such as a ?query
public DumpFull() : string