summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/protected/pages/Ticket521.php
blob: d28a777a258d2571be3a48fae429bab4875e2c83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

class Ticket521 extends TPage
{

  public function doOnClick($s, $p){
  	$this->label1->Text = "Button 1 was clicked ";
  }
  public function doSave($s, $p){
  	$this->label1->Text .= " on callback ";

  }


}
?>