Ferreteria/v2/class/fcPageElement

From Woozle Writes Code
< Ferreteria‎ | v2‎ | class
Revision as of 17:02, 3 May 2019 by htyp>Woozle (extenders (more complete))
Jump to navigation Jump to search

Template:Page/code/class

/*::::
  PURPOSE: a Page Element is a renderable, executable Tree Node but is not a good parent (ignores any children).
*/
abstract class fcPageElement extends fcTreeNode {
    abstract public function Render();
    abstract public function DoEvent($nEvent);
    
    private $arConfig;
    protected function SetConfigValue($sName,$v) {
	$this->arConfig[$sName] = $v;
    }
}