summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Samples/TKeyboard/Home.php
blob: 689f45c8cf687b77e82028b14bd723da98dd9a2e (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.'".';
	}
}

?>