blob: d984fece74b9f365b9794c62ffba6f796640a008 (
plain)
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
|
<?php
/**
* The context object handles the current configuration file and different
* useful functions associated to the current view state.
*/
class FreshRSS_Context {
public static $conf = null;
public static $state = 0;
public static function init() {
// Init configuration.
$current_user = Minz_Session::param('currentUser');
try {
self::$conf = new FreshRSS_Configuration($current_user);
} catch(Minz_Exception $e) {
Minz_Log::error('Cannot load configuration file of user `' . $current_user . '`');
die($e->getMessage());
}
// Init i18n.
Minz_Session::_param('language', self::$conf->language);
Minz_Translate::init();
// Get the current state.
self::$state = self::$conf->default_view;
}
public static function stateEnabled($state) {
return self::$state & $state;
}
}
|