You are here

public function OpignoGroupManagedContent::setSkillSystem in Opigno group manager 3.x

Same name and namespace in other branches
  1. 8 src/Entity/OpignoGroupManagedContent.php \Drupal\opigno_group_manager\Entity\OpignoGroupManagedContent::setSkillSystem()

Set skill flag.

Parameters

bool $is_InSkillSystem: TRUE if this content is in skill system. FALSE otherwise.

Return value

$this

File

src/Entity/OpignoGroupManagedContent.php, line 230

Class

OpignoGroupManagedContent
Defines the Opigno Group Content entity.

Namespace

Drupal\opigno_group_manager\Entity

Code

public function setSkillSystem($is_InSkillSystem) {
  $this
    ->set('in_skills_system', $is_InSkillSystem)->value;
  return $this;
}