Compare commits
20 Commits
7c3b007ff9
...
refactor
Author | SHA1 | Date | |
---|---|---|---|
d8f1f4cbdd | |||
22640f02b6 | |||
797da77803 | |||
66f95f46bf | |||
b85cbaf398 | |||
34b7a1c7c9 | |||
fb2249d9bd | |||
614293c114 | |||
167166b898 | |||
c3f802835f | |||
13ddf5aa13 | |||
225e92a51c | |||
60c64afcab | |||
49ab81ca23 | |||
65fe65474e | |||
57fae7c1c3 | |||
cc551b0851 | |||
40435a16be | |||
f783fa2373 | |||
8b725e5a9a |
@ -0,0 +1,8 @@
|
||||
uuid: 85aacc47-8df9-4309-b7f4-f58be70f83d0
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
name: 'Case Provider Roles'
|
||||
vid: oc_case_provider_role
|
||||
description: ''
|
||||
weight: 0
|
8
config/install/taxonomy.vocabulary.oc_fee_category.yml
Normal file
8
config/install/taxonomy.vocabulary.oc_fee_category.yml
Normal file
@ -0,0 +1,8 @@
|
||||
uuid: 93a96bb4-da95-4d69-be37-d1477624f849
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
name: 'Fee categories'
|
||||
vid: oc_fee_category
|
||||
description: ''
|
||||
weight: 0
|
@ -1,4 +1,20 @@
|
||||
<?php
|
||||
use \Drupal\Core\Field\BaseFieldDefinition;
|
||||
|
||||
function opencase_cases_update_90002() {
|
||||
$field_storage_definition = BaseFieldDefinition::create('entity_reference')
|
||||
->setLabel(t('Target'))
|
||||
->setRevisionable(TRUE)
|
||||
->setSetting('target_type', 'oc_actor')
|
||||
->setSetting('handler', 'default')
|
||||
->setDefaultValueCallback('\Drupal\opencase_cases\Entity\OCCase::defaultTarget')
|
||||
->setDisplayConfigurable('form', true)
|
||||
->setDisplayConfigurable('view', true);
|
||||
|
||||
|
||||
\Drupal::entityDefinitionUpdateManager()
|
||||
->installFieldStorageDefinition('oc_target', 'oc_case', 'opencase_cases', $field_storage_definition);
|
||||
}
|
||||
|
||||
function opencase_cases_update_8025() {
|
||||
//check if the table exists first. If not, then create the entity.
|
||||
@ -10,7 +26,7 @@ function opencase_cases_update_8025() {
|
||||
}
|
||||
|
||||
function opencase_cases_update_8026() {
|
||||
$storage_definition = \Drupal\Core\Field\BaseFieldDefinition::create('entity_reference')
|
||||
$storage_definition = BaseFieldDefinition::create('entity_reference')
|
||||
->setLabel(t('Role'))
|
||||
->setSetting('target_type', 'taxonomy_term')
|
||||
->setSetting('handler_settings', ['target_bundles' => ['oc_case_provider_role' => 'oc_case_provider_role']])
|
||||
|
@ -7,6 +7,9 @@ declare(strict_types = 1);
|
||||
*/
|
||||
|
||||
use Drupal\Core\Routing\RouteMatchInterface;
|
||||
use PHPUnit\Framework\Constraint\IsEmpty;
|
||||
|
||||
use function PHPUnit\Framework\isEmpty;
|
||||
|
||||
/**
|
||||
* Implements hook_help().
|
||||
@ -94,7 +97,8 @@ function opencase_cases_get_activities(Drupal\opencase_cases\entity\OCCase $case
|
||||
}
|
||||
|
||||
function opencase_cases_get_amount(Drupal\opencase_cases\entity\OCCaseFee $case_fee): string {
|
||||
return $case_fee->amount->first()->value;
|
||||
if (!isEmpty($case_fee->amount)) return $case_fee->amount->first()->value;
|
||||
else return '0';
|
||||
}
|
||||
|
||||
function opencase_cases_get_case(Drupal\opencase_cases\entity\OCCaseFee $case_fee): Drupal\opencase_cases\entity\OCCase {
|
||||
@ -180,9 +184,16 @@ function opencase_cases_form_alter(&$form, &$form_state, $form_id) {
|
||||
function _opencase_cases_redirect_to_home($form, &$form_state) {
|
||||
$form_state->setRedirect('<front>');
|
||||
}
|
||||
|
||||
// Upon deletion of an activity, go to the related case if there is one, otherwise to its target.
|
||||
function _opencase_cases_delete_activity_redirect($form, &$form_state) {
|
||||
$case_id = $form_state->getFormObject()->getEntity()->oc_case->target_id;
|
||||
$form_state->setRedirect('entity.oc_case.canonical', ['oc_case' => $case_id]);
|
||||
if (!IsEmpty($form_state->getFormObject()->getEntity()->oc_case)) {
|
||||
$case_id = $form_state->getFormObject()->getEntity()->oc_case->target_id;
|
||||
$form_state->setRedirect('entity.oc_case.canonical', ['oc_case' => $case_id]);
|
||||
} else {
|
||||
$target_actor_id = $form_state->getFormObject()->getEntity()->oc_target->target_id;
|
||||
$form_state->setRedirect('entity.oc_actor.canonical', ['oc_actor' => $target_actor_id]);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Implements hook_theme_suggestions_HOOK().
|
||||
@ -200,35 +211,6 @@ function opencase_cases_theme_suggestions_oc_case(array $variables) {
|
||||
return $suggestions;
|
||||
}
|
||||
|
||||
//function opencase_views_query_alter(Drupal\views\ViewExecutable $view, $query) {
|
||||
// if ($view->getBaseEntityType() && $view->getBaseEntityType()->id() == 'oc_case') {
|
||||
// $query->addTag('oc_case_access');
|
||||
// }
|
||||
// if ($view->getBaseEntityType() && $view->getBaseEntityType()->id() == 'oc_activity') {
|
||||
// $query->addTag('oc_activity_access');
|
||||
// }
|
||||
//}
|
||||
//
|
||||
//function opencase_query_oc_case_access_alter($query) {
|
||||
// if (\Drupal::currentUser()->hasPermission('view published case entities')) {
|
||||
// return;
|
||||
// }
|
||||
// $linked_actor_id = CaseInvolvement::getLinkedActorId(\Drupal::currentUser());
|
||||
// $query->addJoin('INNER', 'oc_case__actors_involved', 'access_filter', 'access_filter.entity_id = oc_case_field_data.id');
|
||||
// $query->condition('access_filter.actors_involved_target_id', $linked_actor_id);
|
||||
//}
|
||||
//
|
||||
//function opencase_query_oc_activity_access_alter($query) {
|
||||
// if (\Drupal::currentUser()->hasPermission('view published case entities')) {
|
||||
// return;
|
||||
// }
|
||||
// $linked_actor_id = CaseInvolvement::getLinkedActorId(\Drupal::currentUser());
|
||||
// $query->addJoin('INNER', 'oc_case__actors_involved', 'access_filter', 'access_filter.entity_id = oc_activity_field_data.oc_case');
|
||||
// $query->condition('access_filter.actors_involved_target_id', $linked_actor_id);
|
||||
//}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Implements hook_theme_suggestions_HOOK().
|
||||
*/
|
||||
|
@ -25,8 +25,8 @@ class OCCaseController extends ControllerBase implements ContainerInjectionInter
|
||||
* An array suitable for drupal_render().
|
||||
*/
|
||||
public function revisionShow($oc_case_revision) {
|
||||
$oc_case = $this->entityManager()->getStorage('oc_case')->loadRevision($oc_case_revision);
|
||||
$view_builder = $this->entityManager()->getViewBuilder('oc_case');
|
||||
$oc_case = $this->entityTypeManager()->getStorage('oc_case')->loadRevision($oc_case_revision);
|
||||
$view_builder = $this->entityTypeManager()->getViewBuilder('oc_case');
|
||||
|
||||
return $view_builder->view($oc_case);
|
||||
}
|
||||
@ -41,8 +41,10 @@ class OCCaseController extends ControllerBase implements ContainerInjectionInter
|
||||
* The page title.
|
||||
*/
|
||||
public function revisionPageTitle($oc_case_revision) {
|
||||
$oc_case = $this->entityManager()->getStorage('oc_case')->loadRevision($oc_case_revision);
|
||||
return $this->t('Revision of %title from %date', ['%title' => $oc_case->label(), '%date' => format_date($oc_case->getRevisionCreationTime())]);
|
||||
$oc_case = $this->entityTypeManager()->getStorage('oc_case')->loadRevision($oc_case_revision);
|
||||
|
||||
$date = \Drupal::service('date.formatter')->format($oc_case->getRevisionCreationTime());
|
||||
return $this->t('Revision of %title from %date', ['%title' => $oc_case->label(), '%date' => $date]);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -60,7 +62,7 @@ class OCCaseController extends ControllerBase implements ContainerInjectionInter
|
||||
$langname = $oc_case->language()->getName();
|
||||
$languages = $oc_case->getTranslationLanguages();
|
||||
$has_translations = (count($languages) > 1);
|
||||
$oc_case_storage = $this->entityManager()->getStorage('oc_case');
|
||||
$oc_case_storage = $this->entityTypeManager()->getStorage('oc_case');
|
||||
|
||||
$build['#title'] = $has_translations ? $this->t('@langname revisions for %title', ['@langname' => $langname, '%title' => $oc_case->label()]) : $this->t('Revisions for %title', ['%title' => $oc_case->label()]);
|
||||
$header = [$this->t('Revision'), $this->t('Operations')];
|
||||
@ -88,10 +90,11 @@ class OCCaseController extends ControllerBase implements ContainerInjectionInter
|
||||
// Use revision link to link to revisions that are not active.
|
||||
$date = \Drupal::service('date.formatter')->format($revision->getRevisionCreationTime(), 'short');
|
||||
if ($vid != $oc_case->getRevisionId()) {
|
||||
$link = $this->l($date, new Url('entity.oc_case.revision', ['oc_case' => $oc_case->id(), 'oc_case_revision' => $vid]));
|
||||
$url = new Url('entity.oc_case.revision', ['oc_case' => $oc_case->id(), 'oc_case_revision' => $vid]);
|
||||
$link = \Drupal\Core\Link::fromTextAndUrl($date, $url)->toString();
|
||||
}
|
||||
else {
|
||||
$link = $oc_case->link($date);
|
||||
$link = $oc_case->toLink($date)->toString();
|
||||
}
|
||||
|
||||
$row = [];
|
||||
|
@ -118,13 +118,14 @@ class OCCaseFeeController extends ControllerBase implements ContainerInjectionIn
|
||||
// Use revision link to link to revisions that are not active.
|
||||
$date = $this->dateFormatter->format($revision->getRevisionCreationTime(), 'short');
|
||||
if ($vid != $oc_case_fee->getRevisionId()) {
|
||||
$link = $this->l($date, new Url('entity.oc_case_fee.revision', [
|
||||
$url = new Url('entity.oc_case_fee.revision', [
|
||||
'oc_case_fee' => $oc_case_fee->id(),
|
||||
'oc_case_fee_revision' => $vid,
|
||||
]));
|
||||
]);
|
||||
$link = \Drupal\Core\Link::fromTextAndUrl($date, $url)->toString();
|
||||
}
|
||||
else {
|
||||
$link = $oc_case_fee->link($date);
|
||||
$link = $oc_case_fee->toLink($date)->toString();
|
||||
}
|
||||
|
||||
$row = [];
|
||||
|
@ -118,13 +118,14 @@ class OCCaseProvisionController extends ControllerBase implements ContainerInjec
|
||||
// Use revision link to link to revisions that are not active.
|
||||
$date = $this->dateFormatter->format($revision->getRevisionCreationTime(), 'short');
|
||||
if ($vid != $oc_case_provision->getRevisionId()) {
|
||||
$link = $this->l($date, new Url('entity.oc_case_provision.revision', [
|
||||
$url = new Url('entity.oc_case_provision.revision', [
|
||||
'oc_case_provision' => $oc_case_provision->id(),
|
||||
'oc_case_provision_revision' => $vid,
|
||||
]));
|
||||
]);
|
||||
$link = \Drupal\Core\Link::fromTextAndUrl($date, $url)->toString();
|
||||
}
|
||||
else {
|
||||
$link = $oc_case_provision->link($date);
|
||||
$link = $oc_case_provision->toLink($date)->toString();
|
||||
}
|
||||
|
||||
$row = [];
|
||||
|
@ -89,6 +89,12 @@ class OCCase extends RevisionableContentEntityBase implements OCCaseInterface {
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
public static function defaultTarget() {
|
||||
if (opencase_entities_get('target_id')) return [opencase_entities_get('target_id')];
|
||||
else return [];
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
@ -202,6 +208,8 @@ class OCCase extends RevisionableContentEntityBase implements OCCaseInterface {
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
@ -230,6 +238,17 @@ class OCCase extends RevisionableContentEntityBase implements OCCaseInterface {
|
||||
'type' => 'author',
|
||||
'weight' => 80,
|
||||
]);
|
||||
|
||||
|
||||
$fields['oc_target'] = BaseFieldDefinition::create('entity_reference')
|
||||
->setLabel(t('Target'))
|
||||
->setRevisionable(TRUE)
|
||||
->setSetting('target_type', 'oc_actor')
|
||||
->setSetting('handler', 'default')
|
||||
->setDefaultValueCallback('\Drupal\opencase_cases\Entity\OCCase::defaultTarget')
|
||||
->setDisplayConfigurable('form', true)
|
||||
->setDisplayConfigurable('view', true);
|
||||
|
||||
$fields['name'] = BaseFieldDefinition::create('string')
|
||||
->setLabel(t('Title'))
|
||||
->setRevisionable(TRUE)
|
||||
|
@ -272,10 +272,8 @@ class OCCaseFee extends EditorialContentEntityBase implements OCCaseFeeInterface
|
||||
->setTranslatable(TRUE)
|
||||
->setCardinality(1)
|
||||
->setDefaultValueCallback('opencase_cases_default_case_id') // defined in opencase_cases.module
|
||||
->setDisplayOptions('view', [
|
||||
'type' => 'string',
|
||||
'weight' => 0,
|
||||
])
|
||||
->setDisplayConfigurable("view", true)
|
||||
->setDisplayConfigurable("form", true)
|
||||
->setRequired(TRUE);
|
||||
|
||||
$fields['oc_fee_category'] = \Drupal\Core\Field\BaseFieldDefinition::create('entity_reference')
|
||||
|
@ -246,10 +246,14 @@ class OCCaseProvision extends EditorialContentEntityBase implements OCCaseProvis
|
||||
->setDisplayConfigurable('view', TRUE)
|
||||
->setRequired(TRUE);
|
||||
|
||||
$fields['status']->setDescription(t('A boolean indicating whether the Case Provision is published.'))
|
||||
->setDisplayConfigurable('form', TRUE)
|
||||
->setDisplayConfigurable('view', TRUE);
|
||||
|
||||
|
||||
$fields['status'] = BaseFieldDefinition::create('boolean')
|
||||
->setLabel(t('Visible'))
|
||||
->setDescription('If this box is not ticked this record will be hidden from view for most users. Users with access to unpublished entities will be able to restore it if needed.')
|
||||
->setRevisionable(TRUE)
|
||||
->setDisplayConfigurable('form', TRUE)
|
||||
->setDefaultValue(TRUE);
|
||||
|
||||
|
||||
$fields['created'] = BaseFieldDefinition::create('created')
|
||||
->setLabel(t('Created'))
|
||||
@ -273,10 +277,8 @@ class OCCaseProvision extends EditorialContentEntityBase implements OCCaseProvis
|
||||
->setTranslatable(TRUE)
|
||||
->setCardinality(1)
|
||||
->setDefaultValueCallback('opencase_cases_default_case_id') // defined in opencase_cases.module
|
||||
->setDisplayOptions('view', [
|
||||
'type' => 'string',
|
||||
'weight' => 0,
|
||||
])
|
||||
->setDisplayConfigurable('form', TRUE)
|
||||
->setDisplayConfigurable('view', TRUE)
|
||||
->setRequired(TRUE);
|
||||
|
||||
$fields['oc_provider'] = \Drupal\Core\Field\BaseFieldDefinition::create('entity_reference')
|
||||
|
@ -54,18 +54,9 @@ class OCCaseFeeForm extends ContentEntityForm {
|
||||
*/
|
||||
public function save(array $form, FormStateInterface $form_state) {
|
||||
$entity = $this->entity;
|
||||
|
||||
// Save as a new revision if requested to do so.
|
||||
if (!$form_state->isValueEmpty('new_revision') && $form_state->getValue('new_revision') != FALSE) {
|
||||
$entity->setNewRevision();
|
||||
|
||||
// If a new revision is created, save the current user as revision author.
|
||||
$entity->setRevisionCreationTime($this->time->getRequestTime());
|
||||
$entity->setRevisionUserId($this->account->id());
|
||||
}
|
||||
else {
|
||||
$entity->setNewRevision(FALSE);
|
||||
}
|
||||
$entity->setNewRevision();
|
||||
$entity->setRevisionCreationTime(REQUEST_TIME);
|
||||
$entity->setRevisionUserId(\Drupal::currentUser()->id());
|
||||
|
||||
$status = parent::save($form, $form_state);
|
||||
|
||||
|
@ -38,18 +38,9 @@ class OCCaseForm extends ContentEntityForm {
|
||||
*/
|
||||
public function save(array $form, FormStateInterface $form_state) {
|
||||
$entity = $this->entity;
|
||||
|
||||
// Save as a new revision if requested to do so.
|
||||
if (!$form_state->isValueEmpty('new_revision') && $form_state->getValue('new_revision') != FALSE) {
|
||||
$entity->setNewRevision();
|
||||
|
||||
// If a new revision is created, save the current user as revision author.
|
||||
$entity->setRevisionCreationTime( \Drupal::time()->getRequestTime());
|
||||
$entity->setRevisionUserId(\Drupal::currentUser()->id());
|
||||
}
|
||||
else {
|
||||
$entity->setNewRevision(FALSE);
|
||||
}
|
||||
$entity->setNewRevision();
|
||||
$entity->setRevisionCreationTime(REQUEST_TIME);
|
||||
$entity->setRevisionUserId(\Drupal::currentUser()->id());
|
||||
|
||||
$status = parent::save($form, $form_state);
|
||||
|
||||
|
@ -54,18 +54,9 @@ class OCCaseProvisionForm extends ContentEntityForm {
|
||||
*/
|
||||
public function save(array $form, FormStateInterface $form_state) {
|
||||
$entity = $this->entity;
|
||||
|
||||
// Save as a new revision if requested to do so.
|
||||
if (!$form_state->isValueEmpty('new_revision') && $form_state->getValue('new_revision') != FALSE) {
|
||||
$entity->setNewRevision();
|
||||
|
||||
// If a new revision is created, save the current user as revision author.
|
||||
$entity->setRevisionCreationTime($this->time->getRequestTime());
|
||||
$entity->setRevisionUserId($this->account->id());
|
||||
}
|
||||
else {
|
||||
$entity->setNewRevision(FALSE);
|
||||
}
|
||||
$entity->setNewRevision();
|
||||
$entity->setRevisionCreationTime(REQUEST_TIME);
|
||||
$entity->setRevisionUserId(\Drupal::currentUser()->id());
|
||||
|
||||
$status = parent::save($form, $form_state);
|
||||
|
||||
|
9
modules/opencase_cases/src/Helper/HookHelper.php
Normal file
9
modules/opencase_cases/src/Helper/HookHelper.php
Normal file
@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace Drupal\opencase_cases\Helper;
|
||||
|
||||
class HookHelper {
|
||||
public static function onCaseFeeUpdate(\Drupal\opencase_cases\Entity\OCCaseFee $caseFee) {
|
||||
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
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: ''
|
@ -1,5 +0,0 @@
|
||||
default_form: contact_opencase
|
||||
flood:
|
||||
limit: 5
|
||||
interval: 3600
|
||||
user_default_enabled: false
|
@ -1,11 +0,0 @@
|
||||
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: { }
|
@ -1,26 +0,0 @@
|
||||
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: { }
|
@ -1,29 +0,0 @@
|
||||
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: { }
|
@ -1,220 +0,0 @@
|
||||
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
|
||||
_core:
|
||||
default_config_hash: 90BCsdjSFMMiSp2Da3WhMM2sOUliF433LfErYxVCrgk
|
||||
id: oc_actor.client.default
|
||||
targetEntityType: oc_actor
|
||||
bundle: client
|
||||
mode: default
|
||||
content:
|
||||
email:
|
||||
type: string_textfield
|
||||
weight: 3
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
field_asylum_status:
|
||||
weight: 11
|
||||
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: 20
|
||||
settings:
|
||||
progress_indicator: throbber
|
||||
third_party_settings: { }
|
||||
type: file_generic
|
||||
region: content
|
||||
field_date_of_birth:
|
||||
weight: 8
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
type: datetime_default
|
||||
region: content
|
||||
field_dependants:
|
||||
weight: 17
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
type: string_textfield
|
||||
region: content
|
||||
field_disability:
|
||||
weight: 15
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
type: string_textfield
|
||||
region: content
|
||||
field_ethnic_o:
|
||||
weight: 12
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
type: string_textfield
|
||||
region: content
|
||||
field_gender_identified_with:
|
||||
weight: 9
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
type: options_select
|
||||
region: content
|
||||
field_general_noes:
|
||||
weight: 21
|
||||
settings:
|
||||
rows: 5
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
type: string_textarea
|
||||
region: content
|
||||
field_how_heard:
|
||||
weight: 18
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
type: options_select
|
||||
region: content
|
||||
field_income:
|
||||
weight: 16
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
type: options_select
|
||||
region: content
|
||||
field_languages_spoken:
|
||||
weight: 14
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
type: options_select
|
||||
region: content
|
||||
field_marital_:
|
||||
weight: 10
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
type: options_select
|
||||
region: content
|
||||
field_nationalities:
|
||||
type: options_select
|
||||
weight: 13
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
field_referred_by:
|
||||
weight: 19
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
type: string_textfield
|
||||
region: content
|
||||
first_name:
|
||||
type: string_textfield
|
||||
weight: 0
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
last_name:
|
||||
type: string_textfield
|
||||
weight: 2
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
middle_names:
|
||||
type: string_textfield
|
||||
weight: 1
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
name:
|
||||
type: string_textfield
|
||||
weight: -4
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
phone:
|
||||
type: string_textfield
|
||||
weight: 4
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
phone2:
|
||||
type: string_textfield
|
||||
weight: 5
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
post_code:
|
||||
type: string_textfield
|
||||
weight: 7
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
postal_address:
|
||||
type: string_textarea
|
||||
weight: 6
|
||||
region: content
|
||||
settings:
|
||||
rows: 5
|
||||
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:
|
||||
field_sex: true
|
||||
full_name: true
|
||||
status: true
|
||||
user_login: true
|
@ -1,77 +0,0 @@
|
||||
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: { }
|
@ -1,49 +0,0 @@
|
||||
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: { }
|
@ -1,49 +0,0 @@
|
||||
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: { }
|
@ -1,57 +0,0 @@
|
||||
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: { }
|
@ -1,29 +0,0 @@
|
||||
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: { }
|
@ -1,49 +0,0 @@
|
||||
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: { }
|
@ -1,56 +0,0 @@
|
||||
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: { }
|
@ -1,20 +0,0 @@
|
||||
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: { }
|
@ -1,49 +0,0 @@
|
||||
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: { }
|
@ -1,13 +0,0 @@
|
||||
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: { }
|
@ -1,34 +0,0 @@
|
||||
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: { }
|
@ -1,33 +0,0 @@
|
||||
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: { }
|
@ -1,151 +0,0 @@
|
||||
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: { }
|
@ -1,78 +0,0 @@
|
||||
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: { }
|
@ -1,59 +0,0 @@
|
||||
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: { }
|
@ -1,59 +0,0 @@
|
||||
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: { }
|
@ -1,70 +0,0 @@
|
||||
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: { }
|
@ -1,32 +0,0 @@
|
||||
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
|
@ -1,59 +0,0 @@
|
||||
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: { }
|
@ -1,67 +0,0 @@
|
||||
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: { }
|
@ -1,24 +0,0 @@
|
||||
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
|
@ -1,59 +0,0 @@
|
||||
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: { }
|
@ -1,22 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,18 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,26 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,18 +0,0 @@
|
||||
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
|
@ -1,18 +0,0 @@
|
||||
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
|
@ -1,18 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,18 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,18 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,18 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,18 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,22 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,22 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,22 +0,0 @@
|
||||
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
|
@ -1,22 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,22 +0,0 @@
|
||||
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
|
@ -1,18 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,22 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,22 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
|
@ -1,22 +0,0 @@
|
||||
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
|
@ -1,20 +0,0 @@
|
||||
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
Reference in New Issue
Block a user