-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinfo.php
executable file
·38 lines (35 loc) · 1.01 KB
/
info.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
<?php
/**
* Phanbook : Delightfully simple forum software
*
* Licensed under The GNU License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @link http://phanbook.com Phanbook Project
* @since 1.0.0
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
*/
return new \Phalcon\Config([
/**
* The following keys provide meta-data about your theme,
* and define some of the basic functionality.
*/
'name' => 'Default',
/**
* Code detect theme
*/
'code' => 'blog',
/**
* The description is also displayed on the Appearance page.
*/
'description' => 'Core theme for blog',
/**
* The type key indicates the type of extension,
* e.g. plugin, theme or profile. For themes this should always be set to "themes".
*/
'type' => 'themes',
'homepage' => 'http://phanbook.com',
'version' => '1.0.0',
'author' => 'Phanbook'
]);