Ferreteria/v2/class/fcpeSimple

From Woozle Writes Code
< Ferreteria‎ | v2‎ | class
Revision as of 11:18, 26 April 2019 by htyp>Woozle (Created page with "{{page/code/class}} * '''file''': {{l/version|file|page/page.php}} * '''extends''': {{l/version|class|fcPageElement}} * '''extended by''': ** {{l/version|class|fcpeLoginWidget...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Template:Page/code/class

/*::::
  PURPOSE: a Simple Page Element is a Page Element with a name and a value, no other contents to display; 
    defaults to obliviousness (ignores events).
*/
class fcpeSimple extends fcPageElement {
    public function Render() {
	return $this->GetValue();
    }
    public function DoEvent($nEvent) {}
}