Esempio n. 1
0
 public function getValue($name)
 {
     $content = parent::getValue($name);
     if ($content) {
         if (function_exists("gzcompress")) {
             $content = gzuncompress($content);
         }
         $content = unserialize($content);
     }
     return $content;
 }