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