checkpoint_id = $checkpoint_id; $this->checkbox = $checkbox; if ( null == $this->checkbox ){ return false; } // 1 получение ид чекпоинта if(!$this->GetCheckpoint()) { return false; } // 2 проверка на существование чекпоинта //if(!$this->CheckIssetCheckpoint()) { // return false; //} // 3 проверка иерархии if(!$this->CheckHierarchy()) { return false; } return true; } private function GetCheckpoint(){ $checkpointTypesEntity = CheckpointTypes::findOne(['name' => $this->checkbox, 'class' => 'CheckBox']); $this->checkpoint_id = $checkpointTypesEntity->id; if ( null == $this->checkpoint_id) { if(!$this->CheckIssetCheckpoint()) { return false; } } return true; } private function CheckIssetCheckpoint(){ $CheckpointTypesEntity = new CheckpointTypes(); $CheckpointTypesEntity->name = $this->checkbox; $CheckpointTypesEntity->class = 'CheckBox'; $CheckpointTypesEntity->save(); $this->checkpoint_id = $CheckpointTypesEntity->id; if ( null == $this->checkpoint_id) { return false; } return true; } private function CheckHierarchy() { $checkpointTypeHierarchy = CheckpointTypeHierarchy::find()->where(['parent_cp_type' => $rhis->checkpoint_id, 'cp_type' => $rhis->checkbox_id])->one(); $this->tmp = $checkpointTypeHierarchy->cp_type; if ( null == $this->tmp) { $checkpointTypeHierarchy = new CheckpointTypeHierarchy(); $checkpointTypeHierarchy->parent_cp_type = $this->checkpoint_id; $checkpointTypeHierarchy->cp_type = $this->checkbox_id; $checkpointTypeHierarchy->save(); } } }