forked from sobekbr/pyrocms-workless
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.php
More file actions
26 lines (23 loc) · 1.17 KB
/
theme.php
File metadata and controls
26 lines (23 loc) · 1.17 KB
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
<?php defined('BASEPATH') OR exit('No direct script access allowed');
class Theme_PyroCMS_workless extends Theme {
public $name = 'PyroCMS Workless';
public $author = 'Jerel Unruh';
public $author_website = 'http://unruhdesigns.com/';
public $website = 'http://pyrocms.com/';
public $description = 'An HTML5 base template filled with goodies to get you up and running quickly. Based on Workless by iKreativ';
public $version = '1.0';
public $options = array('top-bar' => array('title' => 'Top Bar',
'description' => 'Would you like to display the bar at the very top of the theme?',
'default' => 'yes',
'type' => 'radio',
'options' => 'yes=Yes|no=No',
'is_required' => TRUE),
'placeholder-text' => array('title' => 'Placeholder Text',
'description' => 'Would you like to display the sample text?',
'default' => 'yes',
'type' => 'radio',
'options' => 'yes=Yes|no=No',
'is_required' => TRUE),
);
}
/* End of file theme.php */