function opigno_forum_requirements in Opigno forum 8
Same name and namespace in other branches
- 3.x opigno_forum.install \opigno_forum_requirements()
Implements hook_requirements()
File
- ./
opigno_forum.install, line 39 - Install, update and uninstall functions for the Opigno Forum module.
Code
function opigno_forum_requirements($phase) {
$requirements = [];
if ($phase === 'runtime') {
$non_configured_types = [];
$forum_topic_handler = ForumTopicHandler::get();
$node_types = \Drupal::service('entity_type.bundle.info')
->getBundleInfo('node');
foreach ($forum_topic_handler
->getForumTopicTypeIds() as $node_type_id) {
if ($forum_topic_handler
->isForumTopicType($node_type_id) && !$forum_topic_handler
->isLearningPathContent($node_type_id)) {
$route_parameters = [
'group_type' => 'learning_path',
'plugin_id' => 'group_node:' . $node_type_id,
];
$non_configured_types[$node_type_id] = Link::createFromRoute($node_types[$node_type_id]['label'], 'entity.group_content_type.add_form', $route_parameters)
->toString();
}
}
if ($non_configured_types) {
$args = [
':url' => Url::fromRoute('entity.group_type.content_plugins', [
'group_type' => 'learning_path',
])
->toString(),
];
$requirements['opigno_forum'] = [
'title' => t('Opigno forum access'),
'description' => [
'text' => [
'#markup' => t('Forum topics having these content types are not configured as <a href=":url">Learning path content</a> and will be visible to every user allowed to see regular content:', $args),
],
'types' => [
'#theme' => 'item_list',
'#items' => $non_configured_types,
],
],
'severity' => REQUIREMENT_WARNING,
];
}
}
return $requirements;
}