-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.class.php
32 lines (25 loc) · 1.01 KB
/
Index.class.php
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
26
27
28
29
30
31
32
<?php
PhizView::includeOnce('foo:page/Index.class.php');
class Foo_Bar_Page_Index extends Foo_Page_Index {
protected function getLibWidget($id){
}
protected function loadTemplate(){
return $this->load('common:layout/skeleton')
->title('foo-bar page')
->description( $this->getDescription() )
->keywords( $this->getKeywords() )
->content(
$this->load('foo:block/main')
->header(
$this->load('widget/header/Header.class.php')
)
->left(
$this->load('widget/left')
)
->footer(
$this->load($this->input('footer', 'widget/footer/Footer.class.php'))
)
)
->fetch();
}
}