isExternal()) { $variables['options']['attributes'] = ['target' => '_blank']; } } /** * Implements hook_help(). */ function opencase_help($route_name, RouteMatchInterface $route_match) { switch ($route_name) { // Main module help for the opencase module. case 'help.page.opencase': $output = ''; $output .= '

' . t('About') . '

'; $output .= '

' . t('Simple Case Management') . '

'; return $output; default: } } /** * Implements hook_theme(). */ function opencase_theme() { return [ 'opencase' => [ 'render element' => 'children', ], ]; } /** * Implements hook_uninstall(). * Removes configs. */ function opencase_uninstall() { $configs = [ 'block.block.opencase', 'system.menu.opencase', 'views.view.contact_details_changes', 'views.view.equal_opps_records', 'block.block.exposedformequal_opps_recordspage_1', ]; foreach($configs as $config) { Drupal::configFactory()->getEditable($config)->delete(); } } function opencase_views_pre_render($view) { if (!empty($view->result)) { foreach ($view->result as $key => $result) { if (empty($result->_entity)) { continue; } $access = \Drupal::entityTypeManager() ->getAccessControlHandler($result->_entity->getEntityTypeId()) ->access($result->_entity, 'view', NULL, TRUE); if (!$access->isAllowed()) { unset($view->result[$key]); } } } if (empty($view->result) && empty($view->exposed_input)) { $view->exposed_widgets = NULL; } } function opencase_entity_field_access($operation, \Drupal\Core\Field\FieldDefinitionInterface $field_definition, $account, $items = NULL) { if ($field_definition->getName() == 'field_linked_opencase_actor' && $operation == 'edit' && !$account->hasPermission('administer users')) { return AccessResult::forbidden(); } return AccessResult::neutral(); } /** * Implementation of hook_form_alter() * Changes what page is redirected to after adding or deleting linked organisation */ function opencase_form_alter(&$form, &$form_state, $form_id) { if (preg_match('/oc_organisation_relation_.*_delete_form/', $form_id) or (preg_match('/oc_organisation_relation_.*_add_form/', $form_id))) { $form['actions']['submit']['#submit'][] = '_opencase_organisation_relation_redirect'; } } function _opencase_organisation_relation_redirect($form, &$form_state) { $organisation_id = \Drupal::request()->query->get('organisation_id'); $form_state->setRedirect('entity.oc_organisation.canonical', ['oc_organisation' => $organisation_id]); }