From b8d6533282e914c7d3541ce8a12d99a7f11cd6fc Mon Sep 17 00:00:00 2001 From: jrags <> Date: Thu, 2 Nov 2006 00:12:31 +0000 Subject: TLogin control renders now, working on intergrating it into the membership provider for authentication --- framework/Web/UI/WebControls/TLoginUtil.php | 108 +++++++++++++++------------- 1 file changed, 59 insertions(+), 49 deletions(-) (limited to 'framework/Web/UI/WebControls/TLoginUtil.php') diff --git a/framework/Web/UI/WebControls/TLoginUtil.php b/framework/Web/UI/WebControls/TLoginUtil.php index 073f580d..10b3b2a9 100644 --- a/framework/Web/UI/WebControls/TLoginUtil.php +++ b/framework/Web/UI/WebControls/TLoginUtil.php @@ -3,7 +3,7 @@ class TLoginUtil { const _passwordReplacementKey='<%\s*Password\s*%>'; const _userNameReplacementKey='<%\s*UserName\s*%>'; - + // public function onSendingMailDelegate($param) // { // @@ -12,9 +12,20 @@ class TLoginUtil // { // // } + public static function createChildTable($convertingToTemplate) + { + if ($convertingToTemplate) + { + return new TTable(); + } + else + return new TTable(); + // else + // return new TChildTable(2); + } public static function applyStyleToLiteral(TLiteral $literal,$text,$setTableCellVisible) { - + } public static function copyBorderStyles(TControl $control,$style) { @@ -37,7 +48,7 @@ class TLoginUtil } private static function createMailMessage($email,$userName,$password,$mailDefinition,$defaultSubject,$defaultBody,$owner) { - + } public static function getProvider($providerName) { @@ -54,15 +65,15 @@ class TLoginUtil } public static function getUser(TControl $c) { - + } public static function getUserName(TControl $c) { - + } public static function sendPasswordMail($email,$userName,$password,$mailDefinition,$defaultSubject,$defaultBody,$onSendmailDelegate,$onSendMailErrorDelegate,$owner) { - + } public static function setTableCellStyle(TControl $control,$style) { @@ -81,23 +92,23 @@ class TLoginUtil } } } -class TDisappearingTableRow extends TTableRow +class TDisappearingTableRow extends TTableRow { public function render($writer) { - // bool flag1 = false; - // foreach (TableCell cell1 in this.Cells) - // { - // if (cell1.Visible) - // { - // flag1=true; - // break; - // } - // } - // if (flag1) - // { - // base.Render(writer); - // } + $flag1 = false; + foreach ($this->getCells() as $cell1) + { + if ($cell1->getVisible()) + { + $flag1 = true; + break; + } + } + if ($flag1) + { + parent::render($writer); + } } } class TGenericContainer extends TWebControl @@ -136,38 +147,37 @@ class TGenericContainer extends TWebControl { return $this->_usingDefaultTemplate; } - public function __construct($owner) { $this->_owner=$owner; } - public function findControl($id,$required,$errorResourceKey) - { - - } - protected function findOptionalControl($id) - { - - } - protected function findRequiredControl($id,$errorResourceKey) - { - - } - public function focus() - { - - } - public function render($writer) - { - - } - private function renderContentsInUnitTable($writer) - { - - } - protected function verifyControlNotPresent($id,$errorResourceKey) - { - - } + // public function findControl($id,$required,$errorResourceKey) + // { + // + // } + // protected function findOptionalControl($id) + // { + // + // } + // protected function findRequiredControl($id,$errorResourceKey) + // { + // + // } + // public function focus() + // { + // + // } + // public function render($writer) + // { + // + // } + // private function renderContentsInUnitTable($writer) + // { + // + // } + // protected function verifyControlNotPresent($id,$errorResourceKey) + // { + // + // } } ?> \ No newline at end of file -- cgit v1.2.3