summaryrefslogtreecommitdiff
path: root/trunk/reprap/web/part-lister/controllers/htmltemplate.php
blob: 1936284e5ead3682595f6d99ef9a0ad58ed45320 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?
	class HTMLTemplateController extends Controller
	{
		public function main()
		{
			$this->setArg('content');
			$this->setArg('title');
		}
		
		public function header()
		{
			$this->setArg('title');
		}
		
		public function sidebar()
		{
			
		}
		
		public function footer()
		{
			
		}
	}
?>