summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxue <>2005-12-05 13:57:49 +0000
committerxue <>2005-12-05 13:57:49 +0000
commit703b3edacfbb12b57510d1ca441b6bbbb2fc16ab (patch)
tree9cdffc4d80faef0646fab2f5a404c9a20a3d91d2
parentf2cb7a3cf82f4788e4e96bd42fa617d6ea8e0fb0 (diff)
-rw-r--r--.gitattributes1
-rw-r--r--demos/controls/protected/pages/HomePage.php5
-rw-r--r--demos/controls/protected/pages/HomePage.tpl1
-rw-r--r--framework/Web/THttpUtility.php11
-rw-r--r--framework/Web/UI/TClientScriptManager.php20
-rw-r--r--framework/Web/UI/WebControls/TButton.php14
-rw-r--r--framework/Web/UI/WebControls/TImageButton.php4
-rw-r--r--framework/Web/UI/WebControls/TLinkButton.php338
8 files changed, 370 insertions, 24 deletions
diff --git a/.gitattributes b/.gitattributes
index 22ce54c7..40e0edfa 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -159,6 +159,7 @@ framework/Web/UI/WebControls/THyperLink.php -text
framework/Web/UI/WebControls/TImage.php -text
framework/Web/UI/WebControls/TImageButton.php -text
framework/Web/UI/WebControls/TLabel.php -text
+framework/Web/UI/WebControls/TLinkButton.php -text
framework/Web/UI/WebControls/TLiteral.php -text
framework/Web/UI/WebControls/TPanel.php -text
framework/Web/UI/WebControls/TPlaceHolder.php -text
diff --git a/demos/controls/protected/pages/HomePage.php b/demos/controls/protected/pages/HomePage.php
index 334c826c..d7f7e1be 100644
--- a/demos/controls/protected/pages/HomePage.php
+++ b/demos/controls/protected/pages/HomePage.php
@@ -17,6 +17,11 @@ class HomePage extends TPage
$sender->BackColor='';
$this->TextBox->focus();
}
+
+ public function linkClicked($sender,$param)
+ {
+ $sender->Text="Hello World";
+ }
}
?> \ No newline at end of file
diff --git a/demos/controls/protected/pages/HomePage.tpl b/demos/controls/protected/pages/HomePage.tpl
index f3860d5b..a37a0bd0 100644
--- a/demos/controls/protected/pages/HomePage.tpl
+++ b/demos/controls/protected/pages/HomePage.tpl
@@ -12,5 +12,6 @@
<com:TImageButton ImageUrl=<%~/fungii_logo.gif %> /><br/>
<com:THyperLink Text="Visit a 'classless' page" NavigateUrl="?sp=page.plain" /> |
<com:THyperLink Text="Visit member only page" NavigateUrl="?sp=page.private.member" />
+<com:TLinkButton Text="Click Me" Click="linkClicked" />
</com:TForm>
</com:TContent> \ No newline at end of file
diff --git a/framework/Web/THttpUtility.php b/framework/Web/THttpUtility.php
index 9d2aa7b2..7cb1c01c 100644
--- a/framework/Web/THttpUtility.php
+++ b/framework/Web/THttpUtility.php
@@ -28,6 +28,17 @@ class THttpUtility
else
return strtr($js,array("\t"=>'\t',"\n"=>'\n',"\r"=>'\r','"'=>'\"','\''=>'\\\'','\\'=>'\\\\'));
}
+
+ public static function trimJavaScriptString($js)
+ {
+ if($js!=='' && $js!==null)
+ {
+ if(($pos=strpos($js,'javascript:'))===0)
+ $js=substr($js,11);
+ $js=rtrim($js,';').';';
+ }
+ return $js;
+ }
}
?> \ No newline at end of file
diff --git a/framework/Web/UI/TClientScriptManager.php b/framework/Web/UI/TClientScriptManager.php
index 6c9d6ce8..0b88dac8 100644
--- a/framework/Web/UI/TClientScriptManager.php
+++ b/framework/Web/UI/TClientScriptManager.php
@@ -3,31 +3,21 @@
class TPostBackOptions extends TComponent
{
public $ActionUrl;
- public $Argument;
public $AutoPostBack;
public $ClientSubmit;
public $PerformValidation;
- public $TargetControl;
public $TrackFocus;
public $ValidationGroup;
- public function __construct($targetControl=null,
- $argument='',
- $actionUrl='',
- $autoPostBack=false,
- $trackFocus=false,
- $clientSubmit=true,
- $performValidation=false,
- $validationGroup='')
+ public function __construct($actionUrl='',$autoPostBack=false,$clientSubmit=true,
+ $performValidation=false,$validationGroup='',$trackFocus=false)
{
$this->ActionUrl=$actionUrl;
- $this->Argument=$argument;
$this->AutoPostBack=$autoPostBack;
$this->ClientSubmit=$clientSubmit;
$this->PerformValidation=$performValidation;
- $this->TargetControl=$targetControl;
- $this->TrackFocus=$trackFocus;
$this->ValidationGroup=$validationGroup;
+ $this->TrackFocus=$trackFocus;
}
}
@@ -98,8 +88,8 @@ class TClientScriptManager extends TComponent
}
else
$opt.='false)';
- //if(!$flag)
- // return '';
+ if(!$flag)
+ return '';
}
else
$opt='null';
diff --git a/framework/Web/UI/WebControls/TButton.php b/framework/Web/UI/WebControls/TButton.php
index 6c423d84..2de4e22a 100644
--- a/framework/Web/UI/WebControls/TButton.php
+++ b/framework/Web/UI/WebControls/TButton.php
@@ -3,9 +3,9 @@
* TButton class file.
*
* @author Qiang Xue <qiang.xue@gmail.com>
- * @link http://www.xisc.com/
- * @copyright Copyright &copy; 2004-2005, Qiang Xue
- * @license http://www.opensource.org/licenses/bsd-license.php BSD License
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright &copy; 2005 PradoSoft
+ * @license http://www.pradosoft.com/license/
* @version $Revision: $ $Date: $
* @package System.Web.UI.WebControls
*/
@@ -143,7 +143,7 @@ class TButton extends TWebControl implements IPostBackEventHandler
*/
protected function getPostBackOptions()
{
- $options=new TPostBackOptions($this);
+ $options=new TPostBackOptions();
$options->ClientSubmit=false;
$page=$this->getPage();
if($this->getCausesValidation() && $page->getValidators($this->getValidationGroup())->getCount()>0)
@@ -152,7 +152,7 @@ class TButton extends TWebControl implements IPostBackEventHandler
$options->ValidationGroup=$this->getValidationGroup();
}
if($this->getPostBackUrl()!=='')
- $options->ActionUrl=$this->getPostBackUrl();
+ $options->ActionUrl=THttpUtility::quoteJavaScriptString($this->getPostBackUrl());
$options->ClientSubmit=!$this->getUseSubmitBehavior();
return $options;
}
@@ -276,7 +276,7 @@ class TButton extends TWebControl implements IPostBackEventHandler
*/
public function getOnClientClick()
{
- return $this->getViewState('ClientClick','');
+ return $this->getViewState('OnClientClick','');
}
/**
@@ -284,7 +284,7 @@ class TButton extends TWebControl implements IPostBackEventHandler
*/
public function setOnClientClick($value)
{
- $this->setViewState('ClientClick',$value,'');
+ $this->setViewState('OnClientClick',$value,'');
}
}
diff --git a/framework/Web/UI/WebControls/TImageButton.php b/framework/Web/UI/WebControls/TImageButton.php
index 7043fa86..4c8ae251 100644
--- a/framework/Web/UI/WebControls/TImageButton.php
+++ b/framework/Web/UI/WebControls/TImageButton.php
@@ -90,7 +90,7 @@ class TImageButton extends TImage implements IPostBackDataHandler, IPostBackEven
*/
protected function getPostBackOptions()
{
- $options=new TPostBackOptions($this);
+ $options=new TPostBackOptions();
$options->ClientSubmit=false;
$page=$this->getPage();
if($this->getCausesValidation() && $page->getValidators($this->getValidationGroup())->getCount()>0)
@@ -99,7 +99,7 @@ class TImageButton extends TImage implements IPostBackDataHandler, IPostBackEven
$options->ValidationGroup=$this->getValidationGroup();
}
if($this->getPostBackUrl()!=='')
- $options->ActionUrl=$this->getPostBackUrl();
+ $options->ActionUrl=THttpUtility::quoteJavaScriptString($this->getPostBackUrl());
return $options;
}
diff --git a/framework/Web/UI/WebControls/TLinkButton.php b/framework/Web/UI/WebControls/TLinkButton.php
new file mode 100644
index 00000000..74feb9db
--- /dev/null
+++ b/framework/Web/UI/WebControls/TLinkButton.php
@@ -0,0 +1,338 @@
+<?php
+/**
+ * TLinkButton class file
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright &copy; 2005 PradoSoft
+ * @license http://www.pradosoft.com/license/
+ * @version $Revision: $ $Date: $
+ * @package System.Web.UI.WebControls
+ */
+
+/**
+ * TLinkButton class
+ *
+ * TLinkButton creates a hyperlink style button on the page.
+ * TLinkButton has the same appearance as a hyperlink. However, it is only
+ * used to submit data to the same page. If you want to link to another Web page
+ * when the component is clicked, consider using the THyperLink component.
+ * Like TButton, you can create either a <b>submit</b> button or a <b>command</b> button.
+ *
+ * A <b>command</b> button has a command name (specified by the <b>CommandName</b> property)
+ * and a command parameter (specified by <b>CommandParameter</b> property)
+ * associated with the button. This allows you to create multiple TLinkButton components
+ * on a Web page and programmatically determine which one is clicked with what parameter.
+ * You can provide an event handler for the <b>OnCommand</b> event to programmatically control
+ * the actions performed when the command button is clicked.
+ * In the event handler, you can also determine
+ * the <b>CommandName</b> property value and the <b>CommandParameter</b> property value
+ * through <b>name</b> and <b>parameter</b> of the event parameter which is of
+ * type <b>TCommandEventParameter</b>.
+ *
+ * A <b>submit</b> button does not have a command name associated with the button
+ * and clicking on it simply posts the Web page back to the server.
+ * By default, a TLinkButton component is a submit button.
+ * You can provide an event handler for the <b>OnClick</b> event to programmatically
+ * control the actions performed when the submit button is clicked.
+ *
+ * TLinkButton will display the <b>Text</b> property value as the hyperlink text. If <b>Text</b>
+ * is empty, the body content of TLinkButton will be displayed.
+ * Therefore, you can use TLinkButton as an image button by enclosing an 'img' tag
+ * as the body of TLinkButton.
+ *
+ * Note, <b>Text</b> will be HTML encoded before it is displayed in the TLinkButton component.
+ * If you don't want it to be so, set <b>EncodeText</b> to false.
+ *
+ * Namespace: System.Web.UI.WebControls
+ *
+ * Properties
+ * - <b>Text</b>, string, kept in viewstate
+ * <br>Gets or sets the text caption displayed in the TLinkButton component.
+ * - <b>EncodeText</b>, boolean, default=true, kept in viewstate
+ * <br>Gets or sets the value indicating whether Text should be HTML-encoded when rendering.
+ * - <b>CausesValidation</b>, boolean, default=true, kept in viewstate
+ * <br>Gets or sets a value indicating whether validation is performed when the TLinkButton component is clicked.
+ * - <b>CommandName</b>, string, kept in viewstate
+ * <br>Gets or sets the command name associated with the TLinkButton component that is passed to
+ * the <b>OnCommand</b> event.
+ * - <b>CommandParameter</b>, string, kept in viewstate
+ * <br>Gets or sets an optional parameter passed to the <b>OnCommand</b> event along with
+ * the associated <b>CommandName</b>.
+ *
+ * Events
+ * - <b>OnClick</b> Occurs when the TLinkButton component is clicked.
+ * - <b>OnCommand</b> Occurs when the TLinkButton component is clicked.
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @version $Revision: $ $Date: $
+ * @package System.Web.UI.WebControls
+ * @since 3.0
+ */
+class TLinkButton extends TWebControl implements IPostBackEventHandler
+{
+ /**
+ * @return string tag name of the button
+ */
+ protected function getTagName()
+ {
+ return 'a';
+ }
+
+ /**
+ * Adds attribute name-value pairs to renderer.
+ * This overrides the parent implementation with additional button specific attributes.
+ * @param THtmlWriter the writer used for the rendering purpose
+ */
+ protected function addAttributesToRender($writer)
+ {
+ $page=$this->getPage();
+ $page->ensureRenderInForm($this);
+ $onclick=$this->hasAttribute('onclick')?$this->getAttributes()->remove('onclick'):'';
+ $onclick=THttpUtility::trimJavaScriptString($onclick).THttpUtility::trimJavaScriptString($this->getOnClientClick());
+ if(!empty($onclick))
+ $writer->addAttribute('onclick',$onclick);
+
+ // We call parent implementation here because some attributes
+ // may be overwritten in the following
+ parent::addAttributesToRender($writer);
+
+ if($this->getEnabled(true))
+ {
+ if(($options=$this->getPostBackOptions())===null)
+ $href='javascript:void(0)';
+ else
+ $href=$page->getClientScript()->getPostBackEventReference($this,'',$options,true);
+ $writer->addAttribute('href',$href);
+ }
+ else if($this->getEnabled()) // in this case, parent will not render 'disabled'
+ $writer->addAttribute('disabled','disabled');
+ }
+
+ /**
+ * Returns postback specifications for the button.
+ * This method is used by framework and control developers.
+ * @return TPostBackOptions parameters about how the button defines its postback behavior.
+ */
+ protected function getPostBackOptions()
+ {
+ $options=new TPostBackOptions();
+ $options->ClientSubmit=true;
+ $page=$this->getPage();
+ if($this->getCausesValidation() && $page->getValidators($this->getValidationGroup())->getCount()>0)
+ {
+ $options->PerformValidation=true;
+ $options->ValidationGroup=$this->getValidationGroup();
+ }
+ if($this->getPostBackUrl()!=='')
+ $options->ActionUrl=THttpUtility::quoteJavaScriptString($this->getPostBackUrl());
+ return $options;
+ }
+
+ /**
+ * Renders the body content enclosed between the control tag.
+ * If {@link getText Text} is not empty, it will be rendered. Otherwise,
+ * the body content enclosed in the control tag will be rendered.
+ * @param THtmlWriter the writer used for the rendering purpose
+ */
+ protected function renderContents($writer)
+ {
+ if(($text=$this->getText())==='')
+ parent::renderContents($writer);
+ else
+ $writer->write($text);
+ }
+
+ /**
+ * @return string the text caption of the button
+ */
+ public function getText()
+ {
+ return $this->getViewState('Text','');
+ }
+
+ /**
+ * Sets the text caption of the button.
+ * @param string the text caption to be set
+ */
+ public function setText($value)
+ {
+ $this->setViewState('Text',$value,'');
+ }
+
+ /**
+ * @return string the command name associated with the <b>OnCommand</b> event.
+ */
+ public function getCommandName()
+ {
+ return $this->getViewState('CommandName','');
+ }
+
+ /**
+ * Sets the command name associated with the <b>OnCommand</b> event.
+ * @param string the text caption to be set
+ */
+ public function setCommandName($value)
+ {
+ $this->setViewState('CommandName',$value,'');
+ }
+
+ /**
+ * @return string the parameter associated with the <b>OnCommand</b> event
+ */
+ public function getCommandParameter()
+ {
+ return $this->getViewState('CommandParameter','');
+ }
+
+ /**
+ * Sets the parameter associated with the <b>OnCommand</b> event.
+ * @param string the text caption to be set
+ */
+ public function setCommandParameter($value)
+ {
+ $this->setViewState('CommandParameter',$value,'');
+ }
+
+ /**
+ * @return string the javascript to be executed when the button is clicked
+ */
+ public function getOnClientClick()
+ {
+ return $this->getViewState('OnClientClick','');
+ }
+
+ /**
+ * @param string the javascript to be executed when the button is clicked. Do not prefix it with "javascript:".
+ */
+ public function setOnClientClick($value)
+ {
+ $this->setViewState('OnClientClick',$value,'');
+ }
+
+ /**
+ * @return string the URL of the page to post to when the button is clicked, default is empty meaning post to the current page itself
+ */
+ public function getPostBackUrl()
+ {
+ return $this->getViewState('PostBackUrl','');
+ }
+
+ /**
+ * @param string the URL of the page to post to from the current page when the button is clicked, empty if post to the current page itself
+ */
+ public function setPostBackUrl($value)
+ {
+ $this->setViewState('PostBackUrl',$value,'');
+ }
+
+ /**
+ * @return boolean whether postback event trigger by this button will cause input validation
+ */
+ public function getCausesValidation()
+ {
+ return $this->getViewState('CausesValidation',true);
+ }
+
+ /**
+ * Sets the value indicating whether postback event trigger by this button will cause input validation.
+ * @param string the text caption to be set
+ */
+ public function setCausesValidation($value)
+ {
+ $this->setViewState('CausesValidation',$value,true);
+ }
+
+ /**
+ * @return string the group of validators which the button causes validation upon postback
+ */
+ public function getValidationGroup()
+ {
+ return $this->getViewState('ValidationGroup','');
+ }
+
+ /**
+ * @param string the group of validators which the button causes validation upon postback
+ */
+ public function setValidationGroup($value)
+ {
+ $this->setViewState('ValidationGroup',$value,'');
+ }
+
+ /**
+ * Raises postback event.
+ * The implementation of this function should raise appropriate event(s) (e.g. OnClick, OnCommand)
+ * indicating the component is responsible for the postback event.
+ * This method is primarily used by framework developers.
+ * @param string the parameter associated with the postback event
+ */
+ public function raisePostBackEvent($param)
+ {
+ $this->onClick(new TEventParameter);
+ $cmdParam=new TCommandEventParameter;
+ $cmdParam->name=$this->getCommandName();
+ $cmdParam->parameter=$this->getCommandParameter();
+ $this->onCommand($cmdParam);
+ }
+
+ /**
+ * This method is invoked when the component is clicked.
+ * The method raises 'OnClick' event to fire up the event delegates.
+ * If you override this method, be sure to call the parent implementation
+ * so that the event delegates can be invoked.
+ * @param TEventParameter event parameter to be passed to the event handlers
+ */
+ public function onClick($param)
+ {
+ $this->raiseEvent('Click',$this,$param);
+ }
+
+ /**
+ * This method is invoked when the component is clicked.
+ * The method raises 'OnCommand' event to fire up the event delegates.
+ * If you override this method, be sure to call the parent implementation
+ * so that the event delegates can be invoked.
+ * @param TCommandEventParameter event parameter to be passed to the event handlers
+ */
+ public function onCommand($param)
+ {
+ $this->raiseEvent('Command',$this,$param);
+ $this->raiseBubbleEvent($this,$param);
+ }
+
+ /**
+ * This overrides the parent implementation by rendering more TLinkButton-specific attributes.
+ * @return ArrayObject the attributes to be rendered
+ */
+ protected function getAttributesToRender()
+ {
+ $attr=parent::getAttributesToRender();
+ if($this->isEnabled())
+ {
+ $page=$this->getPage();
+ $postBack=$page->getPostBackClientEvent($this,'');
+ if($this->causesValidation() && $this->Page->isEndScriptRegistered('TValidator'))
+ {
+ $group = $this->getValidationGroup();
+ $group = strlen($group) ? ",'".$group."'" : '';
+ $script = "Prado.Validation.AddTarget('{$this->ClientID}' {$group});";
+ $this->Page->registerEndScript($this->ClientID.'target', $script);
+ }
+
+ $attr['href']="javascript:{$postBack}";
+ }
+ return $attr;
+ }
+
+ /**
+ * This overrides the parent implementation by rendering either <b>Text</b> or the body contents.
+ * @return string the rendering result
+ */
+ protected function renderBody()
+ {
+ $text=$this->isEncodeText()?pradoEncodeData($this->getText()):$this->getText();
+ return strlen($text)?$text:parent::renderBody();
+ }
+}
+
+?> \ No newline at end of file