Skip to content
Snippets Groups Projects
Commit 10e9d3bb authored by Torsten Oppermann's avatar Torsten Oppermann
Browse files

[TASK] Smaller tca corrections

parent b39e48d9
No related branches found
No related tags found
No related merge requests found
......@@ -133,7 +133,7 @@ return [
'config' => [
'type' => 'input',
'size' => 30,
'eval' => 'trim'
'eval' => 'trim, required'
],
],
'last_name' => [
......@@ -142,7 +142,7 @@ return [
'config' => [
'type' => 'input',
'size' => 30,
'eval' => 'trim'
'eval' => 'trim, required'
],
],
'company' => [
......@@ -151,7 +151,7 @@ return [
'config' => [
'type' => 'input',
'size' => 30,
'eval' => 'trim'
'eval' => 'trim, required'
],
],
'city' => [
......@@ -187,7 +187,7 @@ return [
'config' => [
'type' => 'input',
'size' => 30,
'eval' => 'trim'
'eval' => 'trim, required'
],
]
],
......
......@@ -169,9 +169,10 @@ return [
'exclude' => 0,
'label' => 'LLL:EXT:sg_jobs/Resources/Private/Language/locallang_db.xlf:tx_sgjobs_domain_model_job.description',
'config' => [
'type' => 'input',
'size' => 30,
'eval' => 'trim'
'type' => 'text',
'cols' => 40,
'rows' => 10,
'eval' => 'trim, required'
],
],
'location' => [
......@@ -179,6 +180,7 @@ return [
'label' => 'LLL:EXT:sg_jobs/Resources/Private/Language/locallang_db.xlf:tx_sgjobs_domain_model_job.location',
'config' => [
'type' => 'select',
'eval' => 'required',
'renderType' => 'selectSingle',
'internal_type' => 'db',
'foreign_table' => 'tx_sgjobs_domain_model_location',
......@@ -200,6 +202,7 @@ return [
'label' => 'LLL:EXT:sg_jobs/Resources/Private/Language/locallang_db.xlf:tx_sgjobs_domain_model_job.contact',
'config' => [
'type' => 'select',
'eval' => 'required',
'renderType' => 'selectSingle',
'internal_type' => 'db',
'foreign_table' => 'tx_sgjobs_domain_model_contact',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment