summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Samples/TAccordion/Home.php
blob: 3da69927635d5cdf02464092e1bb31beb3355b48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

class Home extends TPage
{
        public function onLoad($param)
        {
                parent::onLoad($param);
                $this->lab1->Text="";
        }

        public function executeTransaction($sender, $param)
        {
                $this->lab1->Text="executeTransaction ok";
        }
}

?>