Subversion Repositories oidplus

Rev

Rev 566 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 566 Rev 567
Line 23... Line 23...
23
 
23
 
24
        protected $content = array();
24
        protected $content = array();
25
 
25
 
26
        // Override abstract functions
26
        // Override abstract functions
27
 
27
 
28
        public function getValue($name) {
28
        protected function getValue($name) {
29
                return isset($this->content[$name]) ? $this->content[$name] : null;
29
                return isset($this->content[$name]) ? $this->content[$name] : null;
30
        }
30
        }
31
 
31
 
32
        public function setValue($name, $value) {
32
        protected function setValue($name, $value) {
33
                $this->content[$name] = $value;
33
                $this->content[$name] = $value;
34
        }
34
        }
35
 
35
 
36
        protected function destroySession() {
36
        protected function destroySession() {
37
                // Nothing to do
37
                // Nothing to do