forked from timReynolds/Bootstrap-PyroCMS-Theme
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy paththeme.php
More file actions
executable file
·22 lines (18 loc) · 742 Bytes
/
theme.php
File metadata and controls
executable file
·22 lines (18 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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.tomothyreynolds.co.uk/';
public $website = 'http://www.pyrocms.com/';
public $description = 'Bootstap template.';
public $version = '1.0b';
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)
);
}
/* End of file theme.php */