Compare commits

...

16 Commits

188 changed files with 5280 additions and 430 deletions

View File

@ -153,8 +153,17 @@ form.oc-organisation-relation-form tr:first-child {
margin-top: -2.20em !important; margin-top: -2.20em !important;
} }
.follow-up-due { .follow-ups-due td {
background-color: #FB8A4F;
}
#block-accreditationcount th,
#block-accreditationcount td {
border: none;
}
#block-accreditationcount {
padding: 1em;
} }
tr:nth-child(even) { tr:nth-child(even) {
@ -171,7 +180,6 @@ tr:nth-child(odd) {
.Off a { .Off a {
color:gray; color:gray;
background-color:black;
} }
.field--type-entity-reference-revisions { .field--type-entity-reference-revisions {

View File

@ -1,7 +1,7 @@
name: 'Opencase Cases' name: 'Opencase Cases'
type: module type: module
description: 'Provides case entities and a required field on activities linking them to a case.' description: 'Provides case entities and a required field on activities linking them to a case.'
core: 8.x core_version_requirement: 9.x
package: OpenCase package: OpenCase
dependencies: dependencies:
0: opencase_entities 0: opencase_entities

View File

@ -17,7 +17,7 @@ function opencase_cases_help($route_name, RouteMatchInterface $route_match) {
case 'help.page.opencase_cases': case 'help.page.opencase_cases':
$output = ''; $output = '';
$output .= '<h3>' . t('About') . '</h3>'; $output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Provides case entities and a required field on activities linking them to a case.') . '</p>'; $output .= '<p>' . t('Provides case entities and a required field on activities linking them to a case, plus case fee and case provision entities.') . '</p>';
return $output; return $output;
default: default:

View File

@ -29,8 +29,6 @@ delete all case provision revisions:
title: 'Delete all revisions' title: 'Delete all revisions'
description: 'Role requires permission to <em>view Case Provision revisions</em> and <em>delete rights</em> for case provision entities in question or <em>administer case provision entities</em>.' description: 'Role requires permission to <em>view Case Provision revisions</em> and <em>delete rights</em> for case provision entities in question or <em>administer case provision entities</em>.'
permission_callbacks:
- \Drupal\opencase_cases\OCCaseProvisionPermissions::generatePermissions
add case fee entities: add case fee entities:
title: 'Create new Case Fee entities' title: 'Create new Case Fee entities'
@ -64,3 +62,4 @@ delete all case fee revisions:
permission_callbacks: permission_callbacks:
- \Drupal\opencase_cases\OCCaseFeePermissions::generatePermissions - \Drupal\opencase_cases\OCCaseFeePermissions::generatePermissions
- \Drupal\opencase_cases\OCCaseProvisionPermissions::generatePermissions

View File

@ -55,6 +55,11 @@ use Drupal\user\UserInterface;
* "langcode" = "langcode", * "langcode" = "langcode",
* "published" = "status", * "published" = "status",
* }, * },
* revision_metadata_keys = {
* "revision_user" = "revision_user",
* "revision_created" = "revision_created",
* "revision_log_message" = "revision_log",
* },
* links = { * links = {
* "canonical" = "/opencase/oc_case_fee/{oc_case_fee}", * "canonical" = "/opencase/oc_case_fee/{oc_case_fee}",
* "add-page" = "/opencase/oc_case_fee/add", * "add-page" = "/opencase/oc_case_fee/add",

View File

@ -30,6 +30,11 @@ use Drupal\Core\Config\Entity\ConfigEntityBundleBase;
* "label" = "label", * "label" = "label",
* "uuid" = "uuid" * "uuid" = "uuid"
* }, * },
* config_export = {
* "id" = "id",
* "label" = "label",
* "uuid" = "uuid"
* },
* links = { * links = {
* "canonical" = "/opencase/oc_case_fee_type/{oc_case_fee_type}", * "canonical" = "/opencase/oc_case_fee_type/{oc_case_fee_type}",
* "add-form" = "/opencase/oc_case_fee_type/add", * "add-form" = "/opencase/oc_case_fee_type/add",

View File

@ -55,6 +55,11 @@ use Drupal\user\UserInterface;
* "langcode" = "langcode", * "langcode" = "langcode",
* "published" = "status", * "published" = "status",
* }, * },
* revision_metadata_keys = {
* "revision_user" = "revision_user",
* "revision_created" = "revision_created",
* "revision_log_message" = "revision_log",
* },
* links = { * links = {
* "canonical" = "/opencase/oc_case_provision/{oc_case_provision}", * "canonical" = "/opencase/oc_case_provision/{oc_case_provision}",
* "add-page" = "/opencase/oc_case_provision/add", * "add-page" = "/opencase/oc_case_provision/add",

View File

@ -30,6 +30,11 @@ use Drupal\Core\Config\Entity\ConfigEntityBundleBase;
* "label" = "label", * "label" = "label",
* "uuid" = "uuid" * "uuid" = "uuid"
* }, * },
* config_export = {
* "id" = "id",
* "label" = "label",
* "uuid" = "uuid"
* },
* links = { * links = {
* "canonical" = "/opencase/oc_case_provision_type/{oc_case_provision_type}", * "canonical" = "/opencase/oc_case_provision_type/{oc_case_provision_type}",
* "add-form" = "/opencase/oc_case_provision_type/add", * "add-form" = "/opencase/oc_case_provision_type/add",

View File

@ -31,6 +31,11 @@ use Drupal\Core\Config\Entity\ConfigEntityBundleBase;
* "label" = "label", * "label" = "label",
* "uuid" = "uuid" * "uuid" = "uuid"
* }, * },
* config_export = {
* "id" = "id",
* "label" = "label",
* "uuid" = "uuid"
* },
* links = { * links = {
* "canonical" = "/admin/opencase/oc_case_type/{oc_case_type}", * "canonical" = "/admin/opencase/oc_case_type/{oc_case_type}",
* "add-form" = "/admin/opencase/oc_case_type/add", * "add-form" = "/admin/opencase/oc_case_type/add",

View File

@ -107,7 +107,7 @@ class OCCaseRevisionDeleteForm extends ConfirmFormBase {
$this->OCCaseStorage->deleteRevision($this->revision->getRevisionId()); $this->OCCaseStorage->deleteRevision($this->revision->getRevisionId());
$this->logger('content')->notice('Case: deleted %title revision %revision.', ['%title' => $this->revision->label(), '%revision' => $this->revision->getRevisionId()]); $this->logger('content')->notice('Case: deleted %title revision %revision.', ['%title' => $this->revision->label(), '%revision' => $this->revision->getRevisionId()]);
drupal_set_message(t('Revision from %revision-date of Case %title has been deleted.', ['%revision-date' => format_date($this->revision->getRevisionCreationTime()), '%title' => $this->revision->label()])); \Drupal::messenger()->addMessage(t('Revision from %revision-date of Case %title has been deleted.', ['%revision-date' => format_date($this->revision->getRevisionCreationTime()), '%title' => $this->revision->label()]));
$form_state->setRedirect( $form_state->setRedirect(
'entity.oc_case.canonical', 'entity.oc_case.canonical',
['oc_case' => $this->revision->id()] ['oc_case' => $this->revision->id()]

View File

@ -120,7 +120,7 @@ class OCCaseRevisionRevertForm extends ConfirmFormBase {
$this->revision->save(); $this->revision->save();
$this->logger('content')->notice('Case: reverted %title revision %revision.', ['%title' => $this->revision->label(), '%revision' => $this->revision->getRevisionId()]); $this->logger('content')->notice('Case: reverted %title revision %revision.', ['%title' => $this->revision->label(), '%revision' => $this->revision->getRevisionId()]);
drupal_set_message(t('Case %title has been reverted to the revision from %revision-date.', ['%title' => $this->revision->label(), '%revision-date' => $this->dateFormatter->format($original_revision_timestamp)])); \Drupal::messenger()->addMessage(t('Case %title has been reverted to the revision from %revision-date.', ['%title' => $this->revision->label(), '%revision-date' => $this->dateFormatter->format($original_revision_timestamp)]));
$form_state->setRedirect( $form_state->setRedirect(
'entity.oc_case.version_history', 'entity.oc_case.version_history',
['oc_case' => $this->revision->id()] ['oc_case' => $this->revision->id()]

View File

@ -38,7 +38,7 @@ class OCCaseTypeDeleteForm extends EntityConfirmFormBase {
public function submitForm(array &$form, FormStateInterface $form_state) { public function submitForm(array &$form, FormStateInterface $form_state) {
$this->entity->delete(); $this->entity->delete();
drupal_set_message( \Drupal::messenger()->addMessage(
$this->t('content @type: deleted @label.', $this->t('content @type: deleted @label.',
[ [
'@type' => $this->entity->bundle(), '@type' => $this->entity->bundle(),

View File

@ -49,13 +49,13 @@ class OCCaseTypeForm extends EntityForm {
switch ($status) { switch ($status) {
case SAVED_NEW: case SAVED_NEW:
drupal_set_message($this->t('Created the %label Case type.', [ \Drupal::messenger()->addMessage($this->t('Created the %label Case type.', [
'%label' => $oc_case_type->label(), '%label' => $oc_case_type->label(),
])); ]));
break; break;
default: default:
drupal_set_message($this->t('Saved the %label Case type.', [ \Drupal::messenger()->addMessage($this->t('Saved the %label Case type.', [
'%label' => $oc_case_type->label(), '%label' => $oc_case_type->label(),
])); ]));
} }

View File

@ -1,7 +1,7 @@
name: 'Opencase example reporting' name: 'Opencase example reporting'
type: module type: module
description: 'Reporting on the types of people, cases etc that the Opencase Defaults module provides' description: 'Reporting on the types of people, cases etc that the Opencase Defaults module provides'
core: 8.x core_version_requirement: "^9"
package: 'OpenCase' package: 'OpenCase'
dependencies: dependencies:
- opencase_defaults - opencase_defaults

View File

@ -0,0 +1,11 @@
langcode: en
status: true
dependencies: { }
id: contact_opencase
label: 'Contact the OpenCase Developers'
recipients:
- naomi@aktivix.org
reply: ''
weight: 0
message: 'Thank you for your message. The OpenCase team will get back to you ASAP.'
redirect: ''

View File

@ -0,0 +1,5 @@
default_form: contact_opencase
flood:
limit: 5
interval: 3600
user_default_enabled: false

View File

@ -0,0 +1,11 @@
langcode: en
status: true
dependencies:
config:
- opencase_entities.oc_activity_type.case_note
id: oc_activity.case_note.default
targetEntityType: oc_activity
bundle: case_note
mode: default
content: { }
hidden: { }

View File

@ -0,0 +1,26 @@
langcode: en
status: true
dependencies:
config:
- field.field.oc_activity.destitution_funds_provided.field_amount
- field.field.oc_activity.destitution_funds_provided.field_funds_for
- opencase_entities.oc_activity_type.destitution_funds_provided
id: oc_activity.destitution_funds_provided.default
targetEntityType: oc_activity
bundle: destitution_funds_provided
mode: default
content:
field_amount:
weight: 28
settings:
placeholder: ''
third_party_settings: { }
type: number
region: content
field_funds_for:
weight: 27
settings: { }
third_party_settings: { }
type: options_select
region: content
hidden: { }

View File

@ -0,0 +1,29 @@
langcode: en
status: true
dependencies:
config:
- field.field.oc_activity.volunteer_training_session.field_date_attended
- field.field.oc_activity.volunteer_training_session.field_type_of_session
- opencase_entities.oc_activity_type.volunteer_training_session
module:
- datetime
id: oc_activity.volunteer_training_session.default
targetEntityType: oc_activity
bundle: volunteer_training_session
mode: default
content:
field_date_attended:
weight: 27
settings: { }
third_party_settings: { }
type: datetime_default
region: content
field_type_of_session:
weight: 26
settings:
size: 60
placeholder: ''
third_party_settings: { }
type: string_textfield
region: content
hidden: { }

View File

@ -0,0 +1,149 @@
langcode: en
status: true
dependencies:
config:
- field.field.oc_actor.client.field_asylum_status
- field.field.oc_actor.client.field_confidentiality_form
- field.field.oc_actor.client.field_date_of_birth
- field.field.oc_actor.client.field_dependants
- field.field.oc_actor.client.field_disability
- field.field.oc_actor.client.field_ethnic_o
- field.field.oc_actor.client.field_gender_identified_with
- field.field.oc_actor.client.field_general_noes
- field.field.oc_actor.client.field_how_heard
- field.field.oc_actor.client.field_income
- field.field.oc_actor.client.field_languages_spoken
- field.field.oc_actor.client.field_marital_
- field.field.oc_actor.client.field_nationalities
- field.field.oc_actor.client.field_referred_by
- field.field.oc_actor.client.field_sex
- opencase_entities.oc_actor_type.client
module:
- datetime
- file
id: oc_actor.client.default
targetEntityType: oc_actor
bundle: client
mode: default
content:
field_asylum_status:
weight: 3
settings: { }
third_party_settings: { }
type: options_select
region: content
field_client_field_1:
weight: 26
settings:
size: 60
placeholder: ''
third_party_settings: { }
type: string_textfield
region: content
field_confidentiality_form:
weight: 12
settings:
progress_indicator: throbber
third_party_settings: { }
type: file_generic
region: content
field_date_of_birth:
weight: 0
settings: { }
third_party_settings: { }
type: datetime_default
region: content
field_dependants:
weight: 9
settings:
size: 60
placeholder: ''
third_party_settings: { }
type: string_textfield
region: content
field_disability:
weight: 7
settings:
size: 60
placeholder: ''
third_party_settings: { }
type: string_textfield
region: content
field_ethnic_o:
weight: 4
settings:
size: 60
placeholder: ''
third_party_settings: { }
type: string_textfield
region: content
field_gender_identified_with:
weight: 1
settings: { }
third_party_settings: { }
type: options_select
region: content
field_general_noes:
weight: 13
settings:
rows: 5
placeholder: ''
third_party_settings: { }
type: string_textarea
region: content
field_how_heard:
weight: 10
settings: { }
third_party_settings: { }
type: options_select
region: content
field_income:
weight: 8
settings: { }
third_party_settings: { }
type: options_select
region: content
field_languages_spoken:
weight: 6
settings: { }
third_party_settings: { }
type: options_select
region: content
field_marital_:
weight: 2
settings: { }
third_party_settings: { }
type: options_select
region: content
field_nationalities:
type: options_select
weight: 5
region: content
settings: { }
third_party_settings: { }
field_referred_by:
weight: 11
settings:
size: 60
placeholder: ''
third_party_settings: { }
type: string_textfield
region: content
name:
type: string_textfield
weight: -4
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
user_id:
type: entity_reference_autocomplete
weight: 5
settings:
match_operator: CONTAINS
size: 60
placeholder: ''
match_limit: 10
region: content
third_party_settings: { }

View File

@ -0,0 +1,77 @@
langcode: en
status: true
dependencies:
config:
- field.field.oc_actor.volunteer.field_ethnic_o
- field.field.oc_actor.volunteer.field_general_noes
- field.field.oc_actor.volunteer.field_languages_spoken
- field.field.oc_actor.volunteer.field_nationalities
- field.field.oc_actor.volunteer.field_osic_level
- field.field.oc_actor.volunteer.field_skills
- opencase_entities.oc_actor_type.volunteer
id: oc_actor.volunteer.default
targetEntityType: oc_actor
bundle: volunteer
mode: default
content:
field_ethnic_o:
weight: 0
settings:
size: 60
placeholder: ''
third_party_settings: { }
type: string_textfield
region: content
field_general_noes:
weight: 5
settings:
rows: 5
placeholder: ''
third_party_settings: { }
type: string_textarea
region: content
field_languages_spoken:
weight: 2
settings: { }
third_party_settings: { }
type: options_select
region: content
field_nationalities:
type: options_select
weight: 1
region: content
settings: { }
third_party_settings: { }
field_osic_level:
weight: 3
settings: { }
third_party_settings: { }
type: options_select
region: content
field_skills:
type: string_textarea
weight: 4
region: content
settings:
rows: 5
placeholder: ''
third_party_settings: { }
name:
type: string_textfield
weight: -4
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
user_id:
type: entity_reference_autocomplete
weight: 5
settings:
match_operator: CONTAINS
size: 60
placeholder: ''
match_limit: 10
region: content
third_party_settings: { }
hidden: { }

View File

@ -0,0 +1,49 @@
langcode: en
status: true
dependencies:
config:
- field.field.oc_case.accommodation.field_case_finance
- field.field.oc_case.accommodation.field_fee_calculation
- field.field.oc_case.accommodation.field_fee_or_equivalent_cost
- field.field.oc_case.accommodation.field_outcome
- field.field.oc_case.accommodation.field_type_of_acco
- opencase_cases.oc_case_type.accommodation
module:
- file
id: oc_case.accommodation.default
targetEntityType: oc_case
bundle: accommodation
mode: default
content:
field_case_finance:
weight: 1
settings: { }
third_party_settings: { }
type: options_select
region: content
field_fee_calculation:
weight: 3
settings: { }
third_party_settings: { }
type: options_select
region: content
field_fee_or_equivalent_cost:
weight: 2
settings:
placeholder: ''
third_party_settings: { }
type: number
region: content
field_outcome:
weight: 26
settings: { }
third_party_settings: { }
type: options_select
region: content
field_type_of_acco:
weight: 0
settings: { }
third_party_settings: { }
type: options_select
region: content
hidden: { }

View File

@ -0,0 +1,49 @@
langcode: en
status: true
dependencies:
config:
- field.field.oc_case.asylum_support.field_case_finance
- field.field.oc_case.asylum_support.field_fee_calculation
- field.field.oc_case.asylum_support.field_fee_or_equivalent_cost
- field.field.oc_case.asylum_support.field_outcome
- field.field.oc_case.asylum_support.field_type_of_as
- opencase_cases.oc_case_type.asylum_support
module:
- file
id: oc_case.asylum_support.default
targetEntityType: oc_case
bundle: asylum_support
mode: default
content:
field_case_finance:
weight: 27
settings: { }
third_party_settings: { }
type: options_select
region: content
field_fee_calculation:
weight: 29
settings: { }
third_party_settings: { }
type: options_select
region: content
field_fee_or_equivalent_cost:
weight: 28
settings:
placeholder: ''
third_party_settings: { }
type: number
region: content
field_outcome:
weight: 30
settings: { }
third_party_settings: { }
type: options_select
region: content
field_type_of_as:
weight: 26
settings: { }
third_party_settings: { }
type: options_select
region: content
hidden: { }

View File

@ -0,0 +1,57 @@
langcode: en
status: true
dependencies:
config:
- field.field.oc_case.employability.field_case_finance
- field.field.oc_case.employability.field_fee_calculation
- field.field.oc_case.employability.field_fee_or_equivalent_cost
- field.field.oc_case.employability.field_gave_list_of_agencies
- field.field.oc_case.employability.field_outcome
- field.field.oc_case.employability.field_type_of_employability_help
- opencase_cases.oc_case_type.employability
module:
- file
id: oc_case.employability.default
targetEntityType: oc_case
bundle: employability
mode: default
content:
field_case_finance:
weight: 28
settings: { }
third_party_settings: { }
type: options_select
region: content
field_fee_calculation:
weight: 30
settings: { }
third_party_settings: { }
type: options_select
region: content
field_fee_or_equivalent_cost:
weight: 29
settings:
placeholder: ''
third_party_settings: { }
type: number
region: content
field_gave_list_of_agencies:
weight: 27
settings:
display_label: true
third_party_settings: { }
type: boolean_checkbox
region: content
field_outcome:
weight: 31
settings: { }
third_party_settings: { }
type: options_select
region: content
field_type_of_employability_help:
weight: 26
settings: { }
third_party_settings: { }
type: options_select
region: content
hidden: { }

View File

@ -0,0 +1,30 @@
uuid: 3be6941a-41a5-4f81-a3ac-2f5741061ec4
langcode: en
status: true
dependencies:
config:
- field.field.oc_case.enquiry.field_outcome
- field.field.oc_case.enquiry.field_subject_of_enquiry
- opencase_cases.oc_case_type.enquiry
module:
- file
id: oc_case.enquiry.default
targetEntityType: oc_case
bundle: enquiry
mode: default
content:
field_outcome:
weight: 1
settings: { }
third_party_settings: { }
type: options_select
region: content
field_subject_of_enquiry:
weight: 0
settings:
rows: 5
placeholder: ''
third_party_settings: { }
type: string_textarea
region: content
hidden: { }

View File

@ -0,0 +1,49 @@
langcode: en
status: true
dependencies:
config:
- field.field.oc_case.health.field_case_finance
- field.field.oc_case.health.field_fee_calculation
- field.field.oc_case.health.field_fee_or_equivalent_cost
- field.field.oc_case.health.field_outcome
- field.field.oc_case.health.field_type_health
- opencase_cases.oc_case_type.health
module:
- file
id: oc_case.health.default
targetEntityType: oc_case
bundle: health
mode: default
content:
field_case_finance:
weight: 27
settings: { }
third_party_settings: { }
type: options_select
region: content
field_fee_calculation:
weight: 29
settings: { }
third_party_settings: { }
type: options_select
region: content
field_fee_or_equivalent_cost:
weight: 28
settings:
placeholder: ''
third_party_settings: { }
type: number
region: content
field_outcome:
weight: 30
settings: { }
third_party_settings: { }
type: options_select
region: content
field_type_health:
weight: 26
settings: { }
third_party_settings: { }
type: options_select
region: content
hidden: { }

View File

@ -0,0 +1,56 @@
langcode: en
status: true
dependencies:
config:
- field.field.oc_case.immigration.field_case_finance
- field.field.oc_case.immigration.field_fee_calculation
- field.field.oc_case.immigration.field_fee_or_equivalent_cost
- field.field.oc_case.immigration.field_level
- field.field.oc_case.immigration.field_outcome
- field.field.oc_case.immigration.field_type_of_applicat
- opencase_cases.oc_case_type.immigration
module:
- file
id: oc_case.immigration.default
targetEntityType: oc_case
bundle: immigration
mode: default
content:
field_case_finance:
weight: 28
settings: { }
third_party_settings: { }
type: options_select
region: content
field_fee_calculation:
weight: 30
settings: { }
third_party_settings: { }
type: options_select
region: content
field_fee_or_equivalent_cost:
weight: 29
settings:
placeholder: ''
third_party_settings: { }
type: number
region: content
field_level:
weight: 26
settings: { }
third_party_settings: { }
type: options_select
region: content
field_outcome:
weight: 31
settings: { }
third_party_settings: { }
type: options_select
region: content
field_type_of_applicat:
weight: 27
settings: { }
third_party_settings: { }
type: options_select
region: content
hidden: { }

View File

@ -0,0 +1,21 @@
uuid: 97d85717-c582-4efa-93cc-786cc078f3d5
langcode: en
status: true
dependencies:
config:
- field.field.oc_case.pro_bono_immigration_service.field_outcome
- opencase_cases.oc_case_type.pro_bono_immigration_service
module:
- file
id: oc_case.pro_bono_immigration_service.default
targetEntityType: oc_case
bundle: pro_bono_immigration_service
mode: default
content:
field_outcome:
weight: 26
settings: { }
third_party_settings: { }
type: options_select
region: content
hidden: { }

View File

@ -0,0 +1,49 @@
langcode: en
status: true
dependencies:
config:
- field.field.oc_case.welfare_rights.field_case_finance
- field.field.oc_case.welfare_rights.field_fee_calculation
- field.field.oc_case.welfare_rights.field_fee_or_equivalent_cost
- field.field.oc_case.welfare_rights.field_outcome
- field.field.oc_case.welfare_rights.field_type_of_welfare_rights_iss
- opencase_cases.oc_case_type.welfare_rights
module:
- file
id: oc_case.welfare_rights.default
targetEntityType: oc_case
bundle: welfare_rights
mode: default
content:
field_case_finance:
weight: 27
settings: { }
third_party_settings: { }
type: options_select
region: content
field_fee_calculation:
weight: 29
settings: { }
third_party_settings: { }
type: options_select
region: content
field_fee_or_equivalent_cost:
weight: 28
settings:
placeholder: ''
third_party_settings: { }
type: number
region: content
field_outcome:
weight: 30
settings: { }
third_party_settings: { }
type: options_select
region: content
field_type_of_welfare_rights_iss:
weight: 26
settings: { }
third_party_settings: { }
type: options_select
region: content
hidden: { }

View File

@ -0,0 +1,13 @@
langcode: en
status: true
dependencies:
config:
- opencase_entities.oc_activity_type.case_note
module:
- user
id: oc_activity.case_note.default
targetEntityType: oc_activity
bundle: case_note
mode: default
content: { }
hidden: { }

View File

@ -0,0 +1,34 @@
langcode: en
status: true
dependencies:
config:
- field.field.oc_activity.destitution_funds_provided.field_amount
- field.field.oc_activity.destitution_funds_provided.field_funds_for
- opencase_entities.oc_activity_type.destitution_funds_provided
module:
- options
- user
id: oc_activity.destitution_funds_provided.default
targetEntityType: oc_activity
bundle: destitution_funds_provided
mode: default
content:
field_amount:
weight: 2
label: above
settings:
thousand_separator: ''
decimal_separator: .
scale: 2
prefix_suffix: true
third_party_settings: { }
type: number_decimal
region: content
field_funds_for:
weight: 1
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
hidden: { }

View File

@ -0,0 +1,33 @@
langcode: en
status: true
dependencies:
config:
- field.field.oc_activity.volunteer_training_session.field_date_attended
- field.field.oc_activity.volunteer_training_session.field_type_of_session
- opencase_entities.oc_activity_type.volunteer_training_session
module:
- datetime
- user
id: oc_activity.volunteer_training_session.default
targetEntityType: oc_activity
bundle: volunteer_training_session
mode: default
content:
field_date_attended:
weight: 1
label: above
settings:
format_type: medium
timezone_override: ''
third_party_settings: { }
type: datetime_default
region: content
field_type_of_session:
weight: 0
label: above
settings:
link_to_entity: false
third_party_settings: { }
type: string
region: content
hidden: { }

View File

@ -0,0 +1,151 @@
langcode: en
status: true
dependencies:
config:
- field.field.oc_actor.client.field_asylum_status
- field.field.oc_actor.client.field_confidentiality_form
- field.field.oc_actor.client.field_date_of_birth
- field.field.oc_actor.client.field_dependants
- field.field.oc_actor.client.field_disability
- field.field.oc_actor.client.field_ethnic_o
- field.field.oc_actor.client.field_gender_identified_with
- field.field.oc_actor.client.field_general_noes
- field.field.oc_actor.client.field_how_heard
- field.field.oc_actor.client.field_income
- field.field.oc_actor.client.field_languages_spoken
- field.field.oc_actor.client.field_marital_
- field.field.oc_actor.client.field_nationalities
- field.field.oc_actor.client.field_referred_by
- opencase_entities.oc_actor_type.client
module:
- datetime
- file
- options
- user
id: oc_actor.client.default
targetEntityType: oc_actor
bundle: client
mode: default
content:
field_asylum_status:
weight: 3
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_client_field_1:
weight: 1
label: above
settings:
link_to_entity: false
third_party_settings: { }
type: string
region: content
field_confidentiality_form:
weight: 12
label: above
settings:
use_description_as_link_text: true
third_party_settings: { }
type: file_default
region: content
field_date_of_birth:
weight: 0
label: above
settings:
timezone_override: ''
format_type: short
third_party_settings: { }
type: datetime_default
region: content
field_dependants:
weight: 9
label: above
settings:
link_to_entity: false
third_party_settings: { }
type: string
region: content
field_disability:
weight: 7
label: above
settings:
link_to_entity: false
third_party_settings: { }
type: string
region: content
field_ethnic_o:
weight: 4
label: above
settings:
link_to_entity: false
third_party_settings: { }
type: string
region: content
field_gender_identified_with:
weight: 1
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_general_noes:
weight: 13
label: above
settings: { }
third_party_settings: { }
type: basic_string
region: content
field_how_heard:
weight: 10
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_income:
weight: 8
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_languages_spoken:
weight: 6
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_marital_:
weight: 2
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_nationalities:
type: list_default
weight: 5
region: content
label: above
settings: { }
third_party_settings: { }
field_referred_by:
weight: 11
label: above
settings:
link_to_entity: false
third_party_settings: { }
type: string
region: content
name:
label: above
type: string
weight: -4
region: content
settings:
link_to_entity: false
third_party_settings: { }
hidden: { }

View File

@ -0,0 +1,78 @@
langcode: en
status: true
dependencies:
config:
- field.field.oc_actor.volunteer.field_ethnic_o
- field.field.oc_actor.volunteer.field_general_noes
- field.field.oc_actor.volunteer.field_languages_spoken
- field.field.oc_actor.volunteer.field_nationalities
- field.field.oc_actor.volunteer.field_osic_level
- field.field.oc_actor.volunteer.field_skills
- opencase_entities.oc_actor_type.volunteer
module:
- options
- user
id: oc_actor.volunteer.default
targetEntityType: oc_actor
bundle: volunteer
mode: default
content:
field_ethnic_o:
weight: 0
label: above
settings:
link_to_entity: false
third_party_settings: { }
type: string
region: content
field_general_noes:
weight: 5
label: above
settings: { }
third_party_settings: { }
type: basic_string
region: content
field_languages_spoken:
weight: 2
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_nationalities:
type: list_default
weight: 1
region: content
label: above
settings: { }
third_party_settings: { }
field_osic_level:
weight: 3
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_sdfdsfds:
weight: 1
label: above
settings: { }
third_party_settings: { }
type: text_default
region: content
field_skills:
type: basic_string
weight: 4
region: content
label: above
settings: { }
third_party_settings: { }
name:
label: above
type: string
weight: -4
region: content
settings:
link_to_entity: false
third_party_settings: { }
hidden: { }

View File

@ -0,0 +1,59 @@
langcode: en
status: true
dependencies:
config:
- field.field.oc_case.accommodation.field_case_finance
- field.field.oc_case.accommodation.field_fee_calculation
- field.field.oc_case.accommodation.field_fee_or_equivalent_cost
- field.field.oc_case.accommodation.field_outcome
- field.field.oc_case.accommodation.field_type_of_acco
- opencase_cases.oc_case_type.accommodation
module:
- file
- options
- user
id: oc_case.accommodation.default
targetEntityType: oc_case
bundle: accommodation
mode: default
content:
field_case_finance:
weight: 1
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_fee_calculation:
weight: 3
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_fee_or_equivalent_cost:
weight: 2
label: above
settings:
thousand_separator: ''
decimal_separator: .
scale: 2
prefix_suffix: true
third_party_settings: { }
type: number_decimal
region: content
field_outcome:
weight: 4
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_type_of_acco:
weight: 0
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
hidden: { }

View File

@ -0,0 +1,59 @@
langcode: en
status: true
dependencies:
config:
- field.field.oc_case.asylum_support.field_case_finance
- field.field.oc_case.asylum_support.field_fee_calculation
- field.field.oc_case.asylum_support.field_fee_or_equivalent_cost
- field.field.oc_case.asylum_support.field_outcome
- field.field.oc_case.asylum_support.field_type_of_as
- opencase_cases.oc_case_type.asylum_support
module:
- file
- options
- user
id: oc_case.asylum_support.default
targetEntityType: oc_case
bundle: asylum_support
mode: default
content:
field_case_finance:
weight: 1
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_fee_calculation:
weight: 3
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_fee_or_equivalent_cost:
weight: 2
label: above
settings:
thousand_separator: ''
decimal_separator: .
scale: 2
prefix_suffix: true
third_party_settings: { }
type: number_decimal
region: content
field_outcome:
weight: 4
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_type_of_as:
weight: 0
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
hidden: { }

View File

@ -0,0 +1,70 @@
langcode: en
status: true
dependencies:
config:
- field.field.oc_case.employability.field_case_finance
- field.field.oc_case.employability.field_fee_calculation
- field.field.oc_case.employability.field_fee_or_equivalent_cost
- field.field.oc_case.employability.field_gave_list_of_agencies
- field.field.oc_case.employability.field_outcome
- field.field.oc_case.employability.field_type_of_employability_help
- opencase_cases.oc_case_type.employability
module:
- file
- options
- user
id: oc_case.employability.default
targetEntityType: oc_case
bundle: employability
mode: default
content:
field_case_finance:
weight: 2
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_fee_calculation:
weight: 4
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_fee_or_equivalent_cost:
weight: 3
label: above
settings:
thousand_separator: ''
decimal_separator: .
scale: 2
prefix_suffix: true
third_party_settings: { }
type: number_decimal
region: content
field_gave_list_of_agencies:
weight: 1
label: above
settings:
format: default
format_custom_false: ''
format_custom_true: ''
third_party_settings: { }
type: boolean
region: content
field_outcome:
weight: 5
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_type_of_employability_help:
weight: 0
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
hidden: { }

View File

@ -0,0 +1,33 @@
uuid: da67cba0-f1ea-438c-8c96-71fb9d769f5a
langcode: en
status: true
dependencies:
config:
- field.field.oc_case.enquiry.field_outcome
- field.field.oc_case.enquiry.field_subject_of_enquiry
- opencase_cases.oc_case_type.enquiry
module:
- file
- options
- user
id: oc_case.enquiry.default
targetEntityType: oc_case
bundle: enquiry
mode: default
content:
field_outcome:
weight: 1
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_subject_of_enquiry:
weight: 0
label: above
settings: { }
third_party_settings: { }
type: basic_string
region: content
hidden:
search_api_excerpt: true

View File

@ -0,0 +1,59 @@
langcode: en
status: true
dependencies:
config:
- field.field.oc_case.health.field_case_finance
- field.field.oc_case.health.field_fee_calculation
- field.field.oc_case.health.field_fee_or_equivalent_cost
- field.field.oc_case.health.field_outcome
- field.field.oc_case.health.field_type_health
- opencase_cases.oc_case_type.health
module:
- file
- options
- user
id: oc_case.health.default
targetEntityType: oc_case
bundle: health
mode: default
content:
field_case_finance:
weight: 1
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_fee_calculation:
weight: 3
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_fee_or_equivalent_cost:
weight: 2
label: above
settings:
thousand_separator: ''
decimal_separator: .
scale: 2
prefix_suffix: true
third_party_settings: { }
type: number_decimal
region: content
field_outcome:
weight: 4
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_type_health:
weight: 0
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
hidden: { }

View File

@ -0,0 +1,67 @@
langcode: en
status: true
dependencies:
config:
- field.field.oc_case.immigration.field_case_finance
- field.field.oc_case.immigration.field_fee_calculation
- field.field.oc_case.immigration.field_fee_or_equivalent_cost
- field.field.oc_case.immigration.field_level
- field.field.oc_case.immigration.field_outcome
- field.field.oc_case.immigration.field_type_of_applicat
- opencase_cases.oc_case_type.immigration
module:
- file
- options
- user
id: oc_case.immigration.default
targetEntityType: oc_case
bundle: immigration
mode: default
content:
field_case_finance:
weight: 2
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_fee_calculation:
weight: 4
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_fee_or_equivalent_cost:
weight: 3
label: above
settings:
thousand_separator: ''
decimal_separator: .
scale: 2
prefix_suffix: true
third_party_settings: { }
type: number_decimal
region: content
field_level:
weight: 0
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_outcome:
weight: 5
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_type_of_applicat:
weight: 1
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
hidden: { }

View File

@ -0,0 +1,25 @@
uuid: a559f6f0-cc30-4a13-8882-7a042a965fc7
langcode: en
status: true
dependencies:
config:
- field.field.oc_case.pro_bono_immigration_service.field_outcome
- opencase_cases.oc_case_type.pro_bono_immigration_service
module:
- file
- options
- user
id: oc_case.pro_bono_immigration_service.default
targetEntityType: oc_case
bundle: pro_bono_immigration_service
mode: default
content:
field_outcome:
weight: 6
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
hidden:
search_api_excerpt: true

View File

@ -0,0 +1,59 @@
langcode: en
status: true
dependencies:
config:
- field.field.oc_case.welfare_rights.field_case_finance
- field.field.oc_case.welfare_rights.field_fee_calculation
- field.field.oc_case.welfare_rights.field_fee_or_equivalent_cost
- field.field.oc_case.welfare_rights.field_outcome
- field.field.oc_case.welfare_rights.field_type_of_welfare_rights_iss
- opencase_cases.oc_case_type.welfare_rights
module:
- file
- options
- user
id: oc_case.welfare_rights.default
targetEntityType: oc_case
bundle: welfare_rights
mode: default
content:
field_case_finance:
weight: 1
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_fee_calculation:
weight: 3
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_fee_or_equivalent_cost:
weight: 2
label: above
settings:
thousand_separator: ''
decimal_separator: .
scale: 2
prefix_suffix: true
third_party_settings: { }
type: number_decimal
region: content
field_outcome:
weight: 4
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
field_type_of_welfare_rights_iss:
weight: 0
label: above
settings: { }
third_party_settings: { }
type: list_default
region: content
hidden: { }

View File

@ -0,0 +1,22 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_activity.field_amount
- opencase_entities.oc_activity_type.destitution_funds_provided
id: oc_activity.destitution_funds_provided.field_amount
field_name: field_amount
entity_type: oc_activity
bundle: destitution_funds_provided
label: Amount
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings:
min: null
max: null
prefix: £
suffix: ''
field_type: decimal

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_activity.field_funds_for
- opencase_entities.oc_activity_type.destitution_funds_provided
module:
- options
id: oc_activity.destitution_funds_provided.field_funds_for
field_name: field_funds_for
entity_type: oc_activity
bundle: destitution_funds_provided
label: For
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_activity.field_date_attended
- opencase_entities.oc_activity_type.volunteer_training_session
module:
- datetime
id: oc_activity.volunteer_training_session.field_date_attended
field_name: field_date_attended
entity_type: oc_activity
bundle: volunteer_training_session
label: 'Date attended'
description: ''
required: true
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: datetime

View File

@ -0,0 +1,18 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_activity.field_type_of_session
- opencase_entities.oc_activity_type.volunteer_training_session
id: oc_activity.volunteer_training_session.field_type_of_session
field_name: field_type_of_session
entity_type: oc_activity
bundle: volunteer_training_session
label: 'Type of session'
description: ''
required: true
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_actor.field_asylum_status
- opencase_entities.oc_actor_type.client
module:
- options
id: oc_actor.client.field_asylum_status
field_name: field_asylum_status
entity_type: oc_actor
bundle: client
label: 'Asylum status'
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,26 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_actor.field_confidentiality_form
- opencase_entities.oc_actor_type.client
module:
- file
id: oc_actor.client.field_confidentiality_form
field_name: field_confidentiality_form
entity_type: oc_actor
bundle: client
label: 'Confidentiality Form'
description: 'Data protection/confidentiality/complaints form signed and uploaded'
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings:
file_directory: '[date:custom:Y]-[date:custom:m]'
file_extensions: pdf
max_filesize: '2 MB'
description_field: false
handler: 'default:file'
handler_settings: { }
field_type: file

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_actor.field_date_of_birth
- opencase_entities.oc_actor_type.client
module:
- datetime
id: oc_actor.client.field_date_of_birth
field_name: field_date_of_birth
entity_type: oc_actor
bundle: client
label: 'Date of birth'
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: datetime

View File

@ -0,0 +1,18 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_actor.field_dependants
- opencase_entities.oc_actor_type.client
id: oc_actor.client.field_dependants
field_name: field_dependants
entity_type: oc_actor
bundle: client
label: Dependants
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: string

View File

@ -0,0 +1,18 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_actor.field_disability
- opencase_entities.oc_actor_type.client
id: oc_actor.client.field_disability
field_name: field_disability
entity_type: oc_actor
bundle: client
label: Disability
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: string

View File

@ -0,0 +1,18 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_actor.field_ethnic_o
- opencase_entities.oc_actor_type.client
id: oc_actor.client.field_ethnic_o
field_name: field_ethnic_o
entity_type: oc_actor
bundle: client
label: 'Ethnic origin'
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_actor.field_gender_identified_with
- opencase_entities.oc_actor_type.client
module:
- options
id: oc_actor.client.field_gender_identified_with
field_name: field_gender_identified_with
entity_type: oc_actor
bundle: client
label: 'Gender identified with'
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,19 @@
uuid: 35db2b5a-8ce8-4d8c-930d-195da8c0f895
langcode: en
status: true
dependencies:
config:
- field.storage.oc_actor.field_general_noes
- opencase_entities.oc_actor_type.client
id: oc_actor.client.field_general_noes
field_name: field_general_noes
entity_type: oc_actor
bundle: client
label: 'General notes'
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: string_long

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_actor.field_how_heard
- opencase_entities.oc_actor_type.client
module:
- options
id: oc_actor.client.field_how_heard
field_name: field_how_heard
entity_type: oc_actor
bundle: client
label: 'How did you hear about the service?'
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_actor.field_income
- opencase_entities.oc_actor_type.client
module:
- options
id: oc_actor.client.field_income
field_name: field_income
entity_type: oc_actor
bundle: client
label: Income
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_actor.field_languages_spoken
- opencase_entities.oc_actor_type.client
module:
- options
id: oc_actor.client.field_languages_spoken
field_name: field_languages_spoken
entity_type: oc_actor
bundle: client
label: 'Languages spoken'
description: 'Hold down <b>Ctrl</b> (or the Mac equivalent) while clicking, and you can select more than one.'
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_actor.field_marital_
- opencase_entities.oc_actor_type.client
module:
- options
id: oc_actor.client.field_marital_
field_name: field_marital_
entity_type: oc_actor
bundle: client
label: 'Marital status'
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_actor.field_nationalities
- opencase_entities.oc_actor_type.client
module:
- options
id: oc_actor.client.field_nationalities
field_name: field_nationalities
entity_type: oc_actor
bundle: client
label: Nationality
description: 'To select multiple nationalities, hold down <b>Ctrl</b> (or the Mac equivalent) while clicking.'
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,18 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_actor.field_referred_by
- opencase_entities.oc_actor_type.client
id: oc_actor.client.field_referred_by
field_name: field_referred_by
entity_type: oc_actor
bundle: client
label: 'Referred by'
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_actor.field_sex
- opencase_entities.oc_actor_type.client
module:
- options
id: oc_actor.client.field_sex
field_name: field_sex
entity_type: oc_actor
bundle: client
label: Sex
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,19 @@
uuid: acfde2f5-ba98-4e83-ba0e-712b23ee4330
langcode: en
status: true
dependencies:
config:
- field.storage.oc_actor.field_general_noes
- opencase_entities.oc_actor_type.volunteer
id: oc_actor.volunteer.field_general_noes
field_name: field_general_noes
entity_type: oc_actor
bundle: volunteer
label: 'General notes'
description: ''
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings: { }
field_type: string_long

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_actor.field_languages_spoken
- opencase_entities.oc_actor_type.volunteer
module:
- options
id: oc_actor.volunteer.field_languages_spoken
field_name: field_languages_spoken
entity_type: oc_actor
bundle: volunteer
label: 'Languages spoken'
description: 'Hold down <b>Ctrl</b> (or the Mac equivalent) while clicking, and you can select more than one.'
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_actor.field_nationalities
- opencase_entities.oc_actor_type.volunteer
module:
- options
id: oc_actor.volunteer.field_nationalities
field_name: field_nationalities
entity_type: oc_actor
bundle: volunteer
label: Nationality
description: 'To select multiple nationalities, hold down <b>Ctrl</b> (or the Mac equivalent) while clicking.'
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_actor.field_osic_level
- opencase_entities.oc_actor_type.volunteer
module:
- options
id: oc_actor.volunteer.field_osic_level
field_name: field_osic_level
entity_type: oc_actor
bundle: volunteer
label: 'OSIC level'
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,18 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_actor.field_skills
- opencase_entities.oc_actor_type.volunteer
id: oc_actor.volunteer.field_skills
field_name: field_skills
entity_type: oc_actor
bundle: volunteer
label: Skills
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: string_long

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_case_finance
- opencase_cases.oc_case_type.accommodation
module:
- options
id: oc_case.accommodation.field_case_finance
field_name: field_case_finance
entity_type: oc_case
bundle: accommodation
label: 'Case finance'
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_fee_calculation
- opencase_cases.oc_case_type.accommodation
module:
- options
id: oc_case.accommodation.field_fee_calculation
field_name: field_fee_calculation
entity_type: oc_case
bundle: accommodation
label: 'Fee calculation'
description: 'If it is per hour, it will be calculated according to the sum of time spent on all the activities logged on the case.'
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,22 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_fee_or_equivalent_cost
- opencase_cases.oc_case_type.accommodation
id: oc_case.accommodation.field_fee_or_equivalent_cost
field_name: field_fee_or_equivalent_cost
entity_type: oc_case
bundle: accommodation
label: 'Fee or equivalent cost'
description: 'If the case is pro bono, state what it would have cost if it were fee paying.'
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings:
min: null
max: null
prefix: £
suffix: ''
field_type: decimal

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_outcome
- opencase_cases.oc_case_type.accommodation
module:
- options
id: oc_case.accommodation.field_outcome
field_name: field_outcome
entity_type: oc_case
bundle: accommodation
label: Outcome
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_type_of_acco
- opencase_cases.oc_case_type.accommodation
module:
- options
id: oc_case.accommodation.field_type_of_acco
field_name: field_type_of_acco
entity_type: oc_case
bundle: accommodation
label: 'Type of accommodation issue'
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_case_finance
- opencase_cases.oc_case_type.asylum_support
module:
- options
id: oc_case.asylum_support.field_case_finance
field_name: field_case_finance
entity_type: oc_case
bundle: asylum_support
label: 'Case finance'
description: ''
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_fee_calculation
- opencase_cases.oc_case_type.asylum_support
module:
- options
id: oc_case.asylum_support.field_fee_calculation
field_name: field_fee_calculation
entity_type: oc_case
bundle: asylum_support
label: 'Fee calculation'
description: 'If it is per hour, it will be calculated according to the sum of time spent on all the activities logged on the case.'
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,22 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_fee_or_equivalent_cost
- opencase_cases.oc_case_type.asylum_support
id: oc_case.asylum_support.field_fee_or_equivalent_cost
field_name: field_fee_or_equivalent_cost
entity_type: oc_case
bundle: asylum_support
label: 'Fee or equivalent cost'
description: ''
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings:
min: null
max: null
prefix: £
suffix: ''
field_type: decimal

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_outcome
- opencase_cases.oc_case_type.asylum_support
module:
- options
id: oc_case.asylum_support.field_outcome
field_name: field_outcome
entity_type: oc_case
bundle: asylum_support
label: Outcome
description: ''
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_type_of_as
- opencase_cases.oc_case_type.asylum_support
module:
- options
id: oc_case.asylum_support.field_type_of_as
field_name: field_type_of_as
entity_type: oc_case
bundle: asylum_support
label: 'Type of asylum support'
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_case_finance
- opencase_cases.oc_case_type.employability
module:
- options
id: oc_case.employability.field_case_finance
field_name: field_case_finance
entity_type: oc_case
bundle: employability
label: 'Case finance'
description: ''
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_fee_calculation
- opencase_cases.oc_case_type.employability
module:
- options
id: oc_case.employability.field_fee_calculation
field_name: field_fee_calculation
entity_type: oc_case
bundle: employability
label: 'Fee calculation'
description: 'If it is per hour, it will be calculated according to the sum of time spent on all the activities logged on the case.'
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,22 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_fee_or_equivalent_cost
- opencase_cases.oc_case_type.employability
id: oc_case.employability.field_fee_or_equivalent_cost
field_name: field_fee_or_equivalent_cost
entity_type: oc_case
bundle: employability
label: 'Fee or equivalent cost'
description: 'If the case is pro bono, state what it would have cost if it were fee paying.'
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings:
min: null
max: null
prefix: £
suffix: ''
field_type: decimal

View File

@ -0,0 +1,22 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_gave_list_of_agencies
- opencase_cases.oc_case_type.employability
id: oc_case.employability.field_gave_list_of_agencies
field_name: field_gave_list_of_agencies
entity_type: oc_case
bundle: employability
label: 'Gave list of agencies'
description: ''
required: false
translatable: false
default_value:
-
value: 0
default_value_callback: ''
settings:
on_label: 'Yes'
off_label: 'No'
field_type: boolean

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_outcome
- opencase_cases.oc_case_type.employability
module:
- options
id: oc_case.employability.field_outcome
field_name: field_outcome
entity_type: oc_case
bundle: employability
label: Outcome
description: ''
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_type_of_employability_help
- opencase_cases.oc_case_type.employability
module:
- options
id: oc_case.employability.field_type_of_employability_help
field_name: field_type_of_employability_help
entity_type: oc_case
bundle: employability
label: 'Type of employability help'
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,23 @@
uuid: 8c80505b-97bb-4668-a24c-9c776b0661ba
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_outcome
- opencase_cases.oc_case_type.enquiry
module:
- options
id: oc_case.enquiry.field_outcome
field_name: field_outcome
entity_type: oc_case
bundle: enquiry
label: Outcome
description: ''
required: false
translatable: true
default_value:
-
value: 'One-off interaction'
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,19 @@
uuid: 58b926b1-a245-4d73-8cca-b93d92b59144
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_subject_of_enquiry
- opencase_cases.oc_case_type.enquiry
id: oc_case.enquiry.field_subject_of_enquiry
field_name: field_subject_of_enquiry
entity_type: oc_case
bundle: enquiry
label: 'Subject of Enquiry'
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: string_long

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_case_finance
- opencase_cases.oc_case_type.health
module:
- options
id: oc_case.health.field_case_finance
field_name: field_case_finance
entity_type: oc_case
bundle: health
label: 'Case finance'
description: ''
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_fee_calculation
- opencase_cases.oc_case_type.health
module:
- options
id: oc_case.health.field_fee_calculation
field_name: field_fee_calculation
entity_type: oc_case
bundle: health
label: 'Fee calculation'
description: 'If it is per hour, it will be calculated according to the sum of time spent on all the activities logged on the case.'
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,22 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_fee_or_equivalent_cost
- opencase_cases.oc_case_type.health
id: oc_case.health.field_fee_or_equivalent_cost
field_name: field_fee_or_equivalent_cost
entity_type: oc_case
bundle: health
label: 'Fee or equivalent cost'
description: 'If the case is pro bono, state what it would have cost if it were fee paying.'
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings:
min: null
max: null
prefix: £
suffix: ''
field_type: decimal

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_outcome
- opencase_cases.oc_case_type.health
module:
- options
id: oc_case.health.field_outcome
field_name: field_outcome
entity_type: oc_case
bundle: health
label: Outcome
description: ''
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_type_health
- opencase_cases.oc_case_type.health
module:
- options
id: oc_case.health.field_type_health
field_name: field_type_health
entity_type: oc_case
bundle: health
label: 'Type of health assistance'
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_case_finance
- opencase_cases.oc_case_type.immigration
module:
- options
id: oc_case.immigration.field_case_finance
field_name: field_case_finance
entity_type: oc_case
bundle: immigration
label: 'Case finance'
description: ''
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_fee_calculation
- opencase_cases.oc_case_type.immigration
module:
- options
id: oc_case.immigration.field_fee_calculation
field_name: field_fee_calculation
entity_type: oc_case
bundle: immigration
label: 'Fee calculation'
description: 'If it is per hour, it will be calculated according to the sum of time spent on all the activities logged on the case.'
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,22 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_fee_or_equivalent_cost
- opencase_cases.oc_case_type.immigration
id: oc_case.immigration.field_fee_or_equivalent_cost
field_name: field_fee_or_equivalent_cost
entity_type: oc_case
bundle: immigration
label: 'Fee or equivalent cost'
description: 'If the case is pro bono, state what it would have cost if it were fee paying.'
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings:
min: null
max: null
prefix: £
suffix: ''
field_type: decimal

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_level
- opencase_cases.oc_case_type.immigration
module:
- options
id: oc_case.immigration.field_level
field_name: field_level
entity_type: oc_case
bundle: immigration
label: Level
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_integer

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_outcome
- opencase_cases.oc_case_type.immigration
module:
- options
id: oc_case.immigration.field_outcome
field_name: field_outcome
entity_type: oc_case
bundle: immigration
label: Outcome
description: ''
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_type_of_applicat
- opencase_cases.oc_case_type.immigration
module:
- options
id: oc_case.immigration.field_type_of_applicat
field_name: field_type_of_applicat
entity_type: oc_case
bundle: immigration
label: 'Type of application'
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,21 @@
uuid: aa34a1ff-3c45-408b-b0ad-f8b9138a4358
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_outcome
- opencase_cases.oc_case_type.pro_bono_immigration_service
module:
- options
id: oc_case.pro_bono_immigration_service.field_outcome
field_name: field_outcome
entity_type: oc_case
bundle: pro_bono_immigration_service
label: Outcome
description: ''
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_case_finance
- opencase_cases.oc_case_type.welfare_rights
module:
- options
id: oc_case.welfare_rights.field_case_finance
field_name: field_case_finance
entity_type: oc_case
bundle: welfare_rights
label: 'Case finance'
description: ''
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_fee_calculation
- opencase_cases.oc_case_type.welfare_rights
module:
- options
id: oc_case.welfare_rights.field_fee_calculation
field_name: field_fee_calculation
entity_type: oc_case
bundle: welfare_rights
label: 'Fee calculation'
description: 'If it is per hour, it will be calculated according to the sum of time spent on all the activities logged on the case.'
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

View File

@ -0,0 +1,22 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_fee_or_equivalent_cost
- opencase_cases.oc_case_type.welfare_rights
id: oc_case.welfare_rights.field_fee_or_equivalent_cost
field_name: field_fee_or_equivalent_cost
entity_type: oc_case
bundle: welfare_rights
label: 'Fee or equivalent cost'
description: 'If the case is pro bono, state what it would have cost if it were fee paying.'
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings:
min: null
max: null
prefix: £
suffix: ''
field_type: decimal

View File

@ -0,0 +1,20 @@
langcode: en
status: true
dependencies:
config:
- field.storage.oc_case.field_outcome
- opencase_cases.oc_case_type.welfare_rights
module:
- options
id: oc_case.welfare_rights.field_outcome
field_name: field_outcome
entity_type: oc_case
bundle: welfare_rights
label: Outcome
description: ''
required: false
translatable: true
default_value: { }
default_value_callback: ''
settings: { }
field_type: list_string

Some files were not shown because too many files have changed in this diff Show More