Exemplo n.º 1
0
 public function as_array()
 {
     $data = parent::as_array();
     $data['options'] = json_decode($data['options'], true);
     if (!Arr::path($data, "options.title.text", false)) {
         Arr::set_path($data, "options.title.text", __($data['name']));
     }
     return $data;
 }
Exemplo n.º 2
0
 /**
  *
  * @return array containing the Backbone attributes
  */
 public function as_array()
 {
     $data = parent::as_array();
     $data['options'] = json_decode($data['options'], true);
     return $data;
 }