source: branches/2.4/prototype/api/config.php @ 6828

Revision 6828, 2.7 KB checked in by eduardow, 12 years ago (diff)

Ticket #2967 - Melhoria na sessão do usuário do expresso.

RevLine 
[5341]1<?php
2
[6754]3namespace prototype\api;
4
[5341]5class Config
6{
[6754]7        static $register;
[5341]8 
[6754]9        static function module($config , $module = false)
10        {
11                //Todo: registrar na nova api o currentapp
12                if(!$module)
13                                $module =  $_SESSION['flags']['currentapp'];
[5399]14 
[6754]15                if( !isset( $_SESSION['config'][$module] ) || !isset( $_SESSION['config'][$module][$config] ))
16                                $_SESSION['config'][$module] = parse_ini_file( ROOTPATH."/config/$module.ini", true );
[5341]17       
[6754]18                return isset($_SESSION['config'][$module][$config]) ? $_SESSION['config'][$module][$config] : false;
[5341]19     
[6754]20        }
[5341]21   
[6754]22        static function me($config)
23        {
[5399]24       
[6754]25                return isset($_SESSION['wallet']['user'][$config]) ? $_SESSION['wallet']['user'][$config] : false;
26        }
[5399]27   
[6754]28        static function service( $service , $config )
29        {
30                if( !isset( $_SESSION['wallet'][$service] ) || !isset( $_SESSION['wallet'][$service][$config] ))
31                                $_SESSION['wallet'][$service] = parse_ini_file( ROOTPATH."/config/$service.srv", true );
[5415]32       
[6754]33                return (isset($_SESSION['wallet'][$service][$config])) ? $_SESSION['wallet'][$service][$config] : false;
34        }
[5399]35   
[6754]36        static function get( $concept , $config = false , $module = false )
37        {
38                $load = parse_ini_file( ROOTPATH."/config/$concept.ini", true );
[5437]39       
[6754]40                if($config === false) return $load;
[5437]41       
[6754]42                return (isset($load[$config])) ? $load[$config] : false;
43        }
[5437]44   
[6754]45        static function regSet( $name , $value)
46        {
47                self::$register[$name] = $value;
48        }
49        static function regGet ($name )
50        {
51                return (isset(self::$register[$name]) ? self::$register[$name] : false );
52        }
[5341]53
[6754]54        static function init( )
55        {
56   
57                if( !defined( 'ROOTPATH' ) )
58                                define( 'ROOTPATH', dirname(__FILE__).'/..' );
[5399]59       
[6754]60                if ( isset( $_COOKIE[ 'sessionid' ] ) )
61                {
62                                session_id( $_COOKIE[ 'sessionid' ] );
63                                $GLOBALS['phpgw']->session->sessionid = $_COOKIE[ 'sessionid' ];
64                }
[5399]65               
[6828]66        if( !isset($_SESSION) )
67        session_start();
[5399]68               
[6754]69        }
70   
[6828]71   
[6754]72        public static function writeIniFile($assoc_arr, $path, $has_sections)
73        {
74                $content = ''; 
75                self::_writeIniFile($content, $assoc_arr, $has_sections);
76                if( file_put_contents($path, $content) === false)
77                {
78                        trigger_error("Permission failure when trying to write in the file: $path ", E_USER_WARNING);
79                        return false;
80                }
81                return true;
82        }
[5399]83
[6754]84        private static function _writeIniFile(&$content, $assoc_arr, $has_sections)
85        {
86                foreach ($assoc_arr as $key => $val)
87                {
88                        if (is_array($val))
89                        {
90                                if($has_sections)
91                                {
92                                        $content .= "[$key]\n";
93                                        self::_writeIniFile(&$content, $val, false);
94                                }
95                                else                           
96                                        foreach($val as $iKey => $iVal)
97                                        {
98                                                if (is_int($iKey))
99                                                        $content .= $key ."[] = $iVal\n";
100                                                else
101                                                        $content .= $key ."[$iKey] = $iVal\n";
102                                        }
103                        }
104                        else
105                                $content .= "$key = $val\n";
106                }
107        }
108
[5341]109}
110
[6754]111        Config::init();
[5399]112       
113
[5341]114?>
Note: See TracBrowser for help on using the repository browser.