-
Notifications
You must be signed in to change notification settings - Fork 1
/
conf.php
50 lines (39 loc) · 1.68 KB
/
conf.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
44
45
46
47
48
49
50
<?php
//ini_set('display_errors', 0);
$ctx->elems->conf->modrewrite = true;
$ctx->elems->conf->mysql = array(
'host' => '127.0.0.1',
'port' => '3306',
'username' => 'causer',
'password' => 'somepwd',
'db' => 'ca',
'prefix' => 'pfx_',
'charset' => 'utf8'
);
$ctx->elems->conf->projectName = 'CodeAbbey';
$ctx->elems->conf->title = "{$ctx->elems->conf->projectName} - programming problems";
$ctx->elems->conf->descr = 'Collection of free programming puzzles';
$ctx->elems->conf->descrSuffix = 'Programming problems for beginners';
$ctx->elems->conf->author = 'Rodion Gorkovenko';
$ctx->elems->conf->mainImage = aurl('img/facade.gif');
$ctx->elems->conf->motto = 'We believe in three things, which lead to success:<br/>Practice, Practice and Practice!';
$ctx->elems->conf->copyright = '© 2013 - ' . date('Y') . ', Rodion Gorkovenko';
$ctx->elems->conf->defTaskSort = 'id1';
$ctx->elems->conf->singleForum = false;
$ctx->elems->conf->nameChangeLevel = 125;
$ctx->elems->conf->personalInfoLevel = 25;
$ctx->elems->conf->taskVolumes = array('simple' => 'Simple', 'advanced' => 'Advanced', 'special' => 'Special');
$ctx->elems->conf->custFrag = array(
'adblock' => '',
'user_extraconfig' => '',
);
$ctx->elems->conf->custSvc = array(
);
$ctx->elems->conf->logging = array('activity' => false);
$ctx->elems->conf->languages = array("c/c++" => "C/C++", "python" => "Python", "go" => "Go",
"java" => "Java", "c#" => "C#", "javascript" => "JavaScript", "other" => "Other");
$ctx->elems->conf->passwordSalt = 'salt#cadabraabra';
$ctx->elems->conf->emailSalt = 'salt#racadabraab';
$ctx->elems->conf->calcPointsSecret = null;
$ctx->elems->conf->viewSolutionSecret = 'baracada';
?>