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', ]; foreach($configs as $config) { Drupal::configFactory()->getEditable($config)->delete(); } } function opencase_views_pre_render($view) { 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(); }