summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Samples/TKeyboard/Home.php
blob: d725dc0688f00cf0f4f1afdc3f3ffa3e968d6dda (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

class Home extends TPage
{
	public function buttonClicked($sender,$param)
	{
		$this->Result->Text='You have entered "'.$this->PasswordInput->Text.'".';
	}
}

?>