Example #1
0
 /**
  * Sets the json value, as it would appear in a jCard or jCal object.
  *
  * The value must always be an array.
  *
  * @param array $value
  * @return void
  */
 public function setJsonValue(array $value)
 {
     $value = array_map(function ($item) {
         return strtr(implode('/', $item), array(':' => '', '-' => ''));
     }, $value);
     parent::setJsonValue($value);
 }
 /**
  * Sets the json value, as it would appear in a jCard or jCal object.
  *
  * The value must always be an array.
  *
  * @param array $value
  * @return void
  */
 public function setJsonValue(array $value)
 {
     $value = array_map('base64_decode', $value);
     parent::setJsonValue($value);
 }