blob: f647f56b6574a65fae971f45be586b6b5cae2183 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
class TicketTestPage extends TTemplateControl
{
public function onLoad($param)
{
$num = str_replace('Ticket_','',get_class($this->getPage()));
$this->getPage()->setTitle("Verifying Ticket $num");
$this->ticketlink->setText("Verifying Ticket $num");
$this->ticketlink->setNavigateUrl("http://trac.pradosoft.com/ticket/{$num}");
}
}
?>
|