Exemple #1
0
 public function config_read($name)
 {
     $value = parent::config_read($name);
     if (is_null($value)) {
         // In other settings NULL means we have to ask user for new value,
         // here we just ignore missing role mappings.
         $value = '';
     }
     return $value;
 }