Example #1
0
 public function updateInheritableAttributes($nodeId, $json = '', $values = null)
 {
     $tagCategory = new Type($this->getDataSource());
     $tagCategory->loadById($nodeId);
     $tagCategory->setValue('data', $json);
     $tagCategory->update();
     return $tagCategory->getValue('data');
 }