function __construct($name = null, &$parent) { parent::__construct($name, $parent); $this->name = $name; define("PANE.VERTICAL", 0); define("PANE.HORIZONTAL", 1); }
function __construct($name = null, $parent, $addPrefix = true) { parent::__construct($name, $parent); if ($addPrefix) { $this->id = "{$parent->id}.{$this->id}"; } }
function __construct($name = null, &$parent) { parent::__construct($name, $parent); $this->name = $name; define("LAYOUT.VERTICAL", 0); define("LAYOUT.HORIZONTAL", 1); define("LAYOUT.EQUALSIZE", 3); }
function __construct($name = null, &$parent) { parent::__construct($name, $parent); $this->name = $name; define("LAYOUT.VERTICAL", 0); define("LAYOUT.HORIZONTAL", 1); $this->setWidth(640); }
function __construct($name = null, &$parent) { global $xajax; parent::__construct($name, $parent); $this->name = $name; $lfr = $xajax->register(XAJAX_FUNCTION, "requestloadFromId"); $lfr->addParameter(XAJAX_INPUT_VALUE, $this->id); $lfr->addParameter(XAJAX_INPUT_VALUE, $this->id); }
function __construct($name = null, &$parent = null, $addPrefix = true) { parent::__construct($name, $parent); $this->name = $name; if ($addPrefix) { $this->id = "{$parent->id}.{$this->id}"; } define("WINDOW.NORMAL", 0); define("WINDOW.FIXED", 1); }
function __construct($name = null, &$parent) { parent::__construct($name, $parent); $this->name = $name; }
function __construct($name = null, &$parent, $label) { parent::__construct($name, $parent); $this->name = $name; $this->value = $label; }
function __construct($name = null, &$parent, $label = "Button") { parent::__construct($name, $parent); $this->name = $name; $this->label = $label; }