-
Notifications
You must be signed in to change notification settings - Fork 15
/
theme.php
executable file
·37 lines (34 loc) · 1.65 KB
/
theme.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
33
34
35
36
37
<?php defined('BASEPATH') OR exit('No direct script access allowed');
class Theme_Bootstrap extends Theme {
public $name = 'Bootstrap';
public $author = 'Tim Reynolds';
public $author_website = 'http://www.timothyreynolds.co.uk/';
public $website = 'http://www.pyrocms.com/';
public $description = 'Bootstrap template.';
public $version = '2.0';
public $options = array(
'show_breadcrumbs' => array(
'title' => 'Show Breadcrumbs',
'description' => 'Would you like to display breadcrumbs?',
'default' => 'yes',
'type' => 'radio',
'options' => 'yes=Yes|no=No',
'is_required' => TRUE
),
'include_nav_fix' => array(
'title' => 'Include Navigation Fix',
'description' => 'Would you like to include a fix for the navigation bar?',
'default' => 'yes',
'type' => 'radio',
'options' => 'yes=Yes|no=No',
'is_required' => TRUE
),
'navigation_layout' => array('title' => 'Navigation layout',
'description' => 'How would you like the navigation displayed?',
'default' => 'bar',
'type' => 'select',
'options' => 'bar=Bar|navbar-fixed-top=Fixed to top|navbar-fixed-bottom=Fixed to bottom',
'is_required' => TRUE),
);
}
/* End of file theme.php */