/** * Constructor * * @access public */ public function __construct() { /* * @tutorial */ parent::__construct(); }
function Display($pView = null, $pData = array()) { $login = null; switch ($login) { default: $pView = 'main'; break; } parent::Display($pView, $pData); return true; }
function Display($pView = null, $pData = array()) { $Questions = $this->_Questions(); foreach ($Questions as $g => $Group) { echo $Group->Label, "<br />"; foreach ($Group->Questions as $q => $Question) { echo ' ' . $Question->Label, "<br />"; } } return true; return parent::Display($pView, $pData); }
function Display($pView = null, $pData = array()) { $login = null; $access = $this->Talk("Security", "Access"); if ($access->Get("Admin")) { return true; } switch ($login) { default: $pView = 'message'; break; } parent::Display($pView, $pData); return true; }
/** * Constructor * * @access public */ public function __construct() { parent::__construct(); }
public function Display($pView = null, $pData = array()) { $pView = 'user'; return parent::Display($pView, $pData); }
function Click($pView = null, $pData = array()) { return parent::Display($pView, $pData); }
function Display($pView = null, $pData = array()) { parent::Display($pView, $pData); return true; }