コード例 #1
0
ファイル: ViewUI.php プロジェクト: anyforsoft/csua_d8
 /**
  * Overrides \Drupal\Core\Config\Entity\ConfigEntityBase::set().
  */
 public function set($property_name, $value, $notify = TRUE)
 {
     if (property_exists($this->storage, $property_name)) {
         $this->storage->set($property_name, $value);
     } else {
         $this->{$property_name} = $value;
     }
 }