From cde36c3fa06f67ef606f8114a24065d49ff45bf3 Mon Sep 17 00:00:00 2001 From: Tim Wagner <tim.wagner@sgalinski.de> Date: Tue, 17 Sep 2019 17:13:16 +0200 Subject: [PATCH] [TASK] Add employment types multi-select to job TCA --- .../TCA/tx_sgjobs_domain_model_job.php | 22 ++++++++++++++++++- ext_tables.sql | 1 + 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/Configuration/TCA/tx_sgjobs_domain_model_job.php b/Configuration/TCA/tx_sgjobs_domain_model_job.php index 96cc397e..6046a928 100644 --- a/Configuration/TCA/tx_sgjobs_domain_model_job.php +++ b/Configuration/TCA/tx_sgjobs_domain_model_job.php @@ -52,7 +52,7 @@ return call_user_func( ], 'interface' => [ 'showRecordFieldList' => 'sys_language_uid, l10n_parent, l10n_diffsource, hidden, pid, title, path_segment, job_id, department, hide_apply_by_email, hide_apply_by_postal, featured_offer, start_date, alternative_start_date, - company, task, qualification, description, contact', + company, task, qualification, description, contact','employment_types', ], 'types' => [ '1' => [ @@ -62,6 +62,7 @@ return call_user_func( department, company, contact, + employment_types, description, --div--; LLL:EXT:' . $extKey . '/Resources/Private/Language/locallang_db.xlf:tca.qualification_tab, task, qualification, --div--;LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:tabs.access, starttime, endtime', @@ -341,6 +342,25 @@ return call_user_func( ] ], ] + ], + 'employment_types' => [ + 'exclude' => TRUE, + 'l10n_mode' => 'exclude', + 'label' => 'Employment Types', // TODO Translate label + 'config' => [ + 'type' => 'select', + 'renderType' => 'selectMultipleSideBySide', + 'items' => [ + ['FULL_TIME', 'FULL_TIME'], + ['PART_TIME', 'PART_TIME'], + ['CONTRACTOR', 'CONTRACTOR'], + ['TEMPORARY', 'TEMPORARY'], + ['INTERN', 'INTERN'], + ['VOLUNTEER', 'VOLUNTEER'], + ['PER_DIEM', 'PER_DIEM'], + ['OTHER', 'OTHER'] + ] + ] ] ], ]; diff --git a/ext_tables.sql b/ext_tables.sql index f6d4e3e9..1d52397b 100644 --- a/ext_tables.sql +++ b/ext_tables.sql @@ -11,6 +11,7 @@ CREATE TABLE tx_sgjobs_domain_model_job ( alternative_start_date text DEFAULT '' NOT NULL, start_date int(11) unsigned DEFAULT '0' NOT NULL, company text DEFAULT '' NOT NULL, + employment_types text DEFAULT '' NOT NULL, description text DEFAULT '' NOT NULL, department int(11) DEFAULT '0' NOT NULL, contact int(11) unsigned DEFAULT '0' NOT NULL, -- GitLab