Example #1
0
 public function setDataProperty($id, $type, $value)
 {
     if (parent::setDataProperty($id, $type, $value)) {
         $this->sendData($this, [$id => $this->dataProperties[$id]]);
         return true;
     }
     return false;
 }
Example #2
0
 public function setDataProperty($id, $type, $value, $send = true)
 {
     if (parent::setDataProperty($id, $type, $value, $send)) {
         return true;
     }
     return false;
 }