Example #1
0
 public function getValue()
 {
     $value = unserialize(parent::getValue());
     if (isset($value['password'])) {
         $value['password'] = $this->_decrypt($value['password']);
     }
     return $value;
 }
Example #2
0
 public function getValue()
 {
     return $this->_decrypt(parent::getValue());
 }
Example #3
0
 public function getValue()
 {
     return unserialize(parent::getValue());
 }