Completed
Push — develop ( c61561...247dd8 )
by
unknown
09:15
created

EmploymentForm::init()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 6
rs 9.4285
cc 1
eloc 4
nc 1
nop 0
1
<?php
2
3
namespace Cv\Form;
4
5
use Core\Form\SummaryForm;
6
7
class EmploymentForm extends SummaryForm
8
{
9
    
10
    protected $baseFieldset = 'EmploymentFieldset';
11
12
    public function init()
13
    {
14
        $this->setDescription(/*@translate*/' Focus on the work experience that gives added weight to your application.<br>Add separate entries for each experience. Start with the most recent.<br>If your work experience is limited:<ul><li>describe your education and training first</li><li>mention volunteering or (paid/unpaid) work placements which provide evidence of work experience.</li></ul>');
15
        $this->setIsDescriptionsEnabled(true);
16
        parent::init();
17
    }
18
}
19