Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -404,10 +404,10 @@ public function preparing_cas_documents_content($documentsArray, $typeOfSchedule
$documentsArray[$key][$typeOfSchedules . '_document_usage'] = 'Read only';
break;
case 'enter_detail':
$documentsArray[$key][$typeOfSchedules . '_document_usage'] = 'You will need to enter details in this document';
$documentsArray[$key][$typeOfSchedules . '_document_usage'] = 'You must complete the relevant sections in this document';
break;
case 'enter_detail_optional':
$documentsArray[$key][$typeOfSchedules . '_document_usage'] = 'If you use this schedule, you will need to enter details in this document';
$documentsArray[$key][$typeOfSchedules . '_document_usage'] = 'If you use this document, you must complete the relevant sections';
break;
}
$documentsArray[$key][$typeOfSchedules . '_file_size'] = $attachment["filesize"];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ public function set_fields() {
'id' => ''),
'choices' => array(
'read_only' => 'Read only',
'enter_detail' => 'You will need to enter details in this document',
'enter_detail_optional' => 'If you use this schedule, you will need to enter details in this document',
'enter_detail' => 'You must complete the relevant sections in this document',
'enter_detail_optional' => 'If you use this document, you must complete the relevant sections',
),
'required' => 1,
] ) )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ public function set_fields() {
'id' => ''),
'choices' => array(
'read_only' => 'Read only',
'enter_detail' => 'You will need to enter details in this document',
'enter_detail_optional' => 'If you use this schedule, you will need to enter details in this document',
'enter_detail' => 'You must complete the relevant sections in this document',
'enter_detail_optional' => 'If you use this document, you must complete the relevant sections',
),
'required' => 1,
] ) )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ public function set_fields() {
'id' => ''),
'choices' => array(
'read_only' => 'Read only',
'enter_detail' => 'You will need to enter details in this document',
'enter_detail_optional' => 'If you use this schedule, you will need to enter details in this document',
'enter_detail' => 'You must complete the relevant sections in this document',
'enter_detail_optional' => 'If you use this document, you must complete the relevant sections',
),
'required' => 1,
] ) )
Expand Down
Loading