-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodule.php
41 lines (40 loc) · 1.3 KB
/
module.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
<?php
/**
* Pi Engine (http://piengine.org)
*
* @link http://code.piengine.org for the Pi Engine source repository
* @copyright Copyright (c) Pi Engine http://piengine.org
* @license http://piengine.org/license.txt New BSD License
*/
/**
* @author Hossein Azizabadi <azizabadi@faragostaresh.com>
*/
return array(
'meta' => array(
'title' => _a('Ask'),
'description' => _a('Ask and Answer'),
'version' => '0.3.1',
'license' => 'New BSD',
'logo' => 'image/logo.png',
'readme' => 'docs/readme.txt',
'demo' => 'http://pialog',
'icon' => 'fa-database',
'clonable' => true,
),
// Author information
'author' => array(
'dev' => 'Hossein Azizabadi',
'email' => 'azizabadi@faragostaresh.com',
'architect' => '@voltan',
'design' => '@voltan'
),
// Resource
'resource' => array(
'database' => 'database.php',
'config' => 'config.php',
'permission' => 'permission.php',
'page' => 'page.php',
'navigation' => 'navigation.php',
'route' => 'route.php',
)
);