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

class Layout extends TTemplateControl
{
	public function onLoad($param)
	{
		$array = array();
		preg_match('/\d+/',$this->getPage()->getPagePath(), $array);
		$num = $array[0];
		$this->getPage()->setTitle("Verifying Ticket $num");
		$this->ticketlink->setText("Verifying Ticket $num");
		$this->ticketlink->setNavigateUrl("http://trac.pradosoft.com/ticket/{$num}");
	}
}

?>