-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.php
43 lines (40 loc) · 1.42 KB
/
config.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
38
39
40
41
42
43
<?php
/**
* Pi Engine (http://pialog.org)
*
* @link http://code.pialog.org for the Pi Engine source repository
* @copyright Copyright (c) Pi Engine http://pialog.org
* @license http://pialog.org/license.txt BSD 3-Clause License
*/
return array(
/**#@+
* To be stored in DB
*/
// Version
'version' => '1.0.0',
// Type of layouts available in the theme
// Potential value: 'both', 'admin', 'front', default as 'both'
'type' => 'front',
/**#@-**/
// Title of the theme
'title' => 'Pejman norouzi Theme',
// Author information: name, email, website
'author' => '',
// Screenshot image, relative path in asset.
// If no screenshot is available, static/image/screenshot.png will be used
'screenshot' => 'image/screenshot.png',
// License or theme images and scripts
'license' => 'Creative Common License'
. ' http://creativecommons.org/licenses/by/3.0/',
// Optional description
'description' => 'Pejman norouzi',
// Parent theme from which templates can be inherited, default as 'default'
'parent' => '',
// Supported browsers
'browser' => 'Internet Explorer: 6+; Chrome: 17+; Firefox: 10+;'
. ' Safari: 5.1+; Opera: 9.8+;',
// List of custom front layouts, optional
'layout' => array(
//'file-name' => __('Layout name'),
),
);