blob: 5ed7110988507ce103c5727cd5b32e97834acae3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  | 
<?php
class DisplayStyleTest extends TPage
{
	function display_button1()
	{
		$this->button1->Display="Dynamic";
	}
	function hide_button1()
	{
		$this->button1->Display="None";
	}
	function show_button2()
	{
		$this->button2->Display="Fixed";
	}
	function hide_button2()
	{
		$this->button2->Display="Hidden";
	}
}
  |