@@ -24,8 +24,8 @@ |
||
| 24 | 24 | public function init() |
| 25 | 25 | { |
| 26 | 26 | $this->setName('employment') |
| 27 | - ->setHydrator(new EntityHydrator()) |
|
| 28 | - ->setObject(new EmploymentEntity()); |
|
| 27 | + ->setHydrator(new EntityHydrator()) |
|
| 28 | + ->setObject(new EmploymentEntity()); |
|
| 29 | 29 | |
| 30 | 30 | $this->add( |
| 31 | 31 | array( |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | */ |
| 29 | 29 | public function getConfig() |
| 30 | 30 | { |
| 31 | - return include __DIR__ . '/../config/module.config.php'; |
|
| 31 | + return include __DIR__.'/../config/module.config.php'; |
|
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | public function onBootstrap(MvcEvent $e) |
@@ -74,14 +74,14 @@ |
||
| 74 | 74 | $count = $options->getAttachmentsCount(); |
| 75 | 75 | |
| 76 | 76 | $form->setIsDisableCapable(false) |
| 77 | - ->setIsDisableElementsCapable(false) |
|
| 78 | - ->setIsDescriptionsEnabled(true) |
|
| 79 | - ->setDescription( |
|
| 77 | + ->setIsDisableElementsCapable(false) |
|
| 78 | + ->setIsDescriptionsEnabled(true) |
|
| 79 | + ->setDescription( |
|
| 80 | 80 | /*@translate*/ 'Attach images or PDF Documents to your CV. Drag&drop them, or click into the attachement area. You can upload up to %sMB', |
| 81 | - [round($size/(1024*1024))>0? round($size/(1024*1024)):round($size/(1024*1024), 1)] |
|
| 82 | - ) |
|
| 83 | - ->setParam('return', 'file-uri') |
|
| 84 | - ->setLabel(/*@translate*/ 'Attachments'); |
|
| 81 | + [round($size/(1024*1024))>0? round($size/(1024*1024)):round($size/(1024*1024), 1)] |
|
| 82 | + ) |
|
| 83 | + ->setParam('return', 'file-uri') |
|
| 84 | + ->setLabel(/*@translate*/ 'Attachments'); |
|
| 85 | 85 | |
| 86 | 86 | /* @var $file \Core\Form\Element\FileUpload */ |
| 87 | 87 | $file = $form->get($this->fileName); |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | * |
| 53 | 53 | * @var string |
| 54 | 54 | */ |
| 55 | - protected $options="Cv/Options"; |
|
| 55 | + protected $options = "Cv/Options"; |
|
| 56 | 56 | |
| 57 | 57 | |
| 58 | 58 | /** |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | ->setIsDescriptionsEnabled(true) |
| 78 | 78 | ->setDescription( |
| 79 | 79 | /*@translate*/ 'Attach images or PDF Documents to your CV. Drag&drop them, or click into the attachement area. You can upload up to %sMB', |
| 80 | - [round($size/(1024*1024))>0? round($size/(1024*1024)):round($size/(1024*1024), 1)] |
|
| 80 | + [round($size / (1024 * 1024)) > 0 ? round($size / (1024 * 1024)) : round($size / (1024 * 1024), 1)] |
|
| 81 | 81 | ) |
| 82 | 82 | ->setParam('return', 'file-uri') |
| 83 | 83 | ->setLabel(/*@translate*/ 'Attachments'); |
@@ -33,7 +33,7 @@ |
||
| 33 | 33 | */ |
| 34 | 34 | public function getUri() |
| 35 | 35 | { |
| 36 | - return "/file/Cv.ContactImage/" . $this->id . "/" .urlencode($this->name); |
|
| 36 | + return "/file/Cv.ContactImage/".$this->id."/".urlencode($this->name); |
|
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | /** |
@@ -32,6 +32,6 @@ |
||
| 32 | 32 | */ |
| 33 | 33 | public function getUri() |
| 34 | 34 | { |
| 35 | - return "/file/Cv.Attachment/" . $this->getId() . "/" .urlencode($this->name); |
|
| 35 | + return "/file/Cv.Attachment/".$this->getId()."/".urlencode($this->name); |
|
| 36 | 36 | } |
| 37 | 37 | } |
@@ -78,7 +78,7 @@ |
||
| 78 | 78 | */ |
| 79 | 79 | public function setCurrentIndicator($currentIndicator) |
| 80 | 80 | { |
| 81 | - $this->currentIndicator=$currentIndicator; |
|
| 81 | + $this->currentIndicator = $currentIndicator; |
|
| 82 | 82 | return $this; |
| 83 | 83 | } |
| 84 | 84 | |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | |
| 87 | 87 | public function setDesiredJob($desiredJob) |
| 88 | 88 | { |
| 89 | - $this->desiredJob=$desiredJob; |
|
| 89 | + $this->desiredJob = $desiredJob; |
|
| 90 | 90 | return $this; |
| 91 | 91 | } |
| 92 | 92 | |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | */ |
| 106 | 106 | public function setDesiredLocation($desiredLocation) |
| 107 | 107 | { |
| 108 | - $this->desiredLocation=$desiredLocation; |
|
| 108 | + $this->desiredLocation = $desiredLocation; |
|
| 109 | 109 | return $this; |
| 110 | 110 | } |
| 111 | 111 | |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | */ |
| 144 | 144 | public function setWillingnessToTravel($willingnessToTravel) |
| 145 | 145 | { |
| 146 | - $this->willingnessToTravel=$willingnessToTravel; |
|
| 146 | + $this->willingnessToTravel = $willingnessToTravel; |
|
| 147 | 147 | return $this; |
| 148 | 148 | } |
| 149 | 149 | |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | */ |
| 163 | 163 | public function setExpectedSalary($expectedSalary) |
| 164 | 164 | { |
| 165 | - $this->expectedSalary=$expectedSalary; |
|
| 165 | + $this->expectedSalary = $expectedSalary; |
|
| 166 | 166 | return $this; |
| 167 | 167 | } |
| 168 | 168 | |
@@ -15,9 +15,9 @@ |
||
| 15 | 15 | */ |
| 16 | 16 | interface StatusInterface extends EntityInterface |
| 17 | 17 | { |
| 18 | - const NONPUBLIC = /*@translate*/ 'private'; |
|
| 18 | + const NONPUBLIC = /*@translate*/ 'private'; |
|
| 19 | 19 | |
| 20 | - const PUBLIC_TO_ALL = /*@translate*/ 'public to all'; |
|
| 20 | + const PUBLIC_TO_ALL = /*@translate*/ 'public to all'; |
|
| 21 | 21 | |
| 22 | 22 | public function __construct($status = self::NONPUBLIC); |
| 23 | 23 | |
@@ -47,7 +47,7 @@ |
||
| 47 | 47 | public function __construct($status = self::NONPUBLIC) |
| 48 | 48 | { |
| 49 | 49 | if (!isset(static::$orderMap[$status])) { |
| 50 | - throw new \DomainException('Unknown status: ' . $status); |
|
| 50 | + throw new \DomainException('Unknown status: '.$status); |
|
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | $this->name = $status; |