blob: 051c39db130179fd8e29424d3952a9a386fdda06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
class Layout extends TTemplateControl
{
public function onLoad($param)
{
$this->getPage()->setTitle("Verifying Ticket 653");
$this->ticketlink->setText("Verifying Ticket 653");
$this->ticketlink->setNavigateUrl("#");
}
}
|