oc_provider->entity->calculateTotalCases(); } function opencase_oc_case_provision_delete(OCCaseProvision $case_provision): void { $case_provision->oc_provider->entity->calculateTotalCases(); } function opencase_oc_case_provision_update(OCCaseProvision $case_provision): void { $case_provision->oc_provider->entity->calculateTotalCases(); $case_provision->original->oc_provider->entity->calculateTotalCases(); } function opencase_oc_case_delete(OCCase $case): void { $case->deleteCaseProvisions(); $case->deleteActivities(); } /** * Implements hook_page_attachments * * Add the opencase library to every page */ function opencase_page_attachments(array &$page) { $page['#attached']['library'][] = 'opencase/opencase-lib'; } /** * Implements hook_link_alter * * Makes menu items that are external links open in new tab. */ function opencase_link_alter(&$variables) { if ($variables['url']->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_relevant_activity_type_ids which is a custom hook invoked in the AddActivity block. */ function opencase_relevant_activity_type_ids($actorTypeID) { switch ($actorTypeID) { case 'volunteer': return ['email', 'phone_call', 'supervision']; case 'client': return ['email', 'lete', 'phone_call', 'case_note', 'destitution_funds_provided', 'research', 'application']; case 'staff_member': return ['application', 'interview']; } } /** * 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]); }