]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/common.php
change names, update
[quix0rs-gnu-social.git] / lib / common.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('LACONICA')) { exit(1); }
21
22 define('AVATAR_PROFILE_SIZE', 96);
23 define('AVATAR_STREAM_SIZE', 48);
24 define('AVATAR_MINI_SIZE', 24);
25 define('MAX_AVATAR_SIZE', 256 * 1024);
26
27 # global configuration object
28
29 require_once('PEAR.php');
30 require_once('DB/DataObject.php');
31 require_once('DB/DataObject/Cast.php'); # for dates
32
33 // default configuration, overwritten in config.php
34
35 $config =
36   array('site' =>
37                 array('name' => 'Just another Laconica microblog',
38                           'server' => 'localhost',
39                           'path' => '/',
40                           'fancy' => false),
41                 'tag' =>
42                 array('authority' => 'INVALID TAG',
43                           'date' => 'PUT A DATE HERE',
44                           'prefix' => ''),
45                 'license' =>
46                 array('url' => 'http://creativecommons.org/licenses/by/3.0/',
47                           'title' => 'Creative Commons Attribution 3.0',
48                           'image' => 'http://i.creativecommons.org/l/by/3.0/88x31.png'),
49                 'avatar' =>
50                 array('default' => 
51                           array('profile' => 'theme/default/image/default-avatar-profile.png',
52                                         'stream' => 'theme/default/image/default-avatar-stream.png',
53                                         'mini' => 'theme/default/image/default-avatar-mini.png')));
54
55 $config['db'] = &PEAR::getStaticProperty('DB_DataObject','options');
56
57 $config['db'] =
58   array('database' => 'YOU HAVE TO SET THIS IN config.php',
59             'schema_location' => INSTALLDIR . '/classes',
60                 'class_location' => INSTALLDIR . '/classes',
61                 'require_prefix' => 'classes/',
62                 'class_prefix' => '',
63         'db_driver' => 'MDB2',
64                 'quote_identifiers' => false);
65
66 require_once(INSTALLDIR.'/config.php');
67 require_once(INSTALLDIR.'/lib/util.php');
68 require_once(INSTALLDIR.'/lib/action.php');
69
70 require_once(INSTALLDIR.'/classes/Avatar.php');
71 require_once(INSTALLDIR.'/classes/Notice.php');
72 require_once(INSTALLDIR.'/classes/Profile.php');
73 require_once(INSTALLDIR.'/classes/Remote_profile.php');
74 require_once(INSTALLDIR.'/classes/Subscription.php');
75 require_once(INSTALLDIR.'/classes/User.php');