public static function OpignoGroupContext::getCurrentGroupContentId in Opigno group manager 8
Same name and namespace in other branches
- 3.x src/OpignoGroupContext.php \Drupal\opigno_group_manager\OpignoGroupContext::getCurrentGroupContentId()
Get the group current Content ID (cid).
Return value
int The Content ID. Can be empty.
File
- src/
OpignoGroupContext.php, line 61
Class
- OpignoGroupContext
- This class manage the context when a user enters or exits a Learning Path.
Namespace
Drupal\opigno_group_managerCode
public static function getCurrentGroupContentId() {
static::ensureSession();
/* @var \Drupal\Core\TempStore\PrivateTempStore $store */
$store = \Drupal::service('user.private_tempstore')
->get('opigno_group_manager');
return $store
->get(self::CURRENT_CONTENT_ID);
}