blob: f57a32f0463a1c8cbedb44a5d42fae42bfbb6eb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
// $Id: Home.php 1405 2006-09-10 01:03:56Z wei $
class Home extends TPage
{
public function buttonClicked($sender, $param)
{
$this->imageTest->ImageUrl=$this->publishAsset("hello_world.gif");
}
public function buttonClicked2($sender, $param)
{
$this->imageTest->ImageUrl=$this->publishAsset("hello_world2.gif");
}
}
|