@@ -23,35 +23,35 @@ discard block |
||
23 | 23 | /** |
24 | 24 | * Job has been published |
25 | 25 | */ |
26 | - const RESPONSE_OK = 'ok'; |
|
26 | + const RESPONSE_OK = 'ok'; |
|
27 | 27 | |
28 | 28 | /** |
29 | 29 | * Job has been published and has stopped all other publishing |
30 | 30 | */ |
31 | - const RESPONSE_OKANDSTOP = 'ok and publishing terminated afterwards'; |
|
31 | + const RESPONSE_OKANDSTOP = 'ok and publishing terminated afterwards'; |
|
32 | 32 | |
33 | 33 | /** |
34 | 34 | * publishing has been stopped |
35 | 35 | */ |
36 | - const RESPONSE_STOP = 'publishing terminated'; |
|
36 | + const RESPONSE_STOP = 'publishing terminated'; |
|
37 | 37 | |
38 | 38 | /** |
39 | 39 | * publishing has been denied, |
40 | 40 | * this is very likely when a job was not intended to be sended to a portal |
41 | 41 | */ |
42 | - const RESPONSE_DENIED = 'denied'; |
|
42 | + const RESPONSE_DENIED = 'denied'; |
|
43 | 43 | |
44 | 44 | /** |
45 | 45 | * a connection to the portal could not be established |
46 | 46 | * or the publishing of the Job has been rejected for other reasons |
47 | 47 | */ |
48 | - const RESPONSE_FAIL = 'fail'; |
|
48 | + const RESPONSE_FAIL = 'fail'; |
|
49 | 49 | |
50 | 50 | /** |
51 | 51 | * This error has nothing to do with wrong inputs, |
52 | 52 | * something just has happend in the programm |
53 | 53 | */ |
54 | - const RESPONSE_ERROR = 'internal Error'; |
|
54 | + const RESPONSE_ERROR = 'internal Error'; |
|
55 | 55 | |
56 | 56 | /** |
57 | 57 | * nothing happens, but that's not a failure |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | /** |
63 | 63 | * nothing happens, and get used to it |
64 | 64 | */ |
65 | - const RESPONSE_DEPRECATED = 'deprecated'; |
|
65 | + const RESPONSE_DEPRECATED = 'deprecated'; |
|
66 | 66 | |
67 | 67 | /** |
68 | 68 | * @var string |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | * @param string $portal |
84 | 84 | * @param string $status |
85 | 85 | */ |
86 | - public function __construct($portal = '', $status = self::RESPONSE_NOTIMPLEMENTED, $message='') |
|
86 | + public function __construct($portal = '', $status = self::RESPONSE_NOTIMPLEMENTED, $message = '') |
|
87 | 87 | { |
88 | 88 | $this->portal = $portal; |
89 | 89 | $this->status = $status; |
@@ -42,7 +42,7 @@ |
||
42 | 42 | { |
43 | 43 | $object = parent::hydrate($data, $object); |
44 | 44 | /* @var \Organizations\Entity\Template $template */ |
45 | - $template=$object->getOrganization()->getTemplate(); |
|
45 | + $template = $object->getOrganization()->getTemplate(); |
|
46 | 46 | if (isset($data['description-label-requirements'])) { |
47 | 47 | $template->setLabelRequirements($data['description-label-requirements']); |
48 | 48 | } |
@@ -81,7 +81,7 @@ |
||
81 | 81 | |
82 | 82 | if (isset($this->value['location']->coordinates)) { |
83 | 83 | $coordinates = $this->value['location']->coordinates->getCoordinates(); |
84 | - $queryBuilder->field('locations.coordinates')->geoWithinCenter($coordinates[0], $coordinates[1], (float) $this->value['d']/100); |
|
84 | + $queryBuilder->field('locations.coordinates')->geoWithinCenter($coordinates[0], $coordinates[1], (float) $this->value['d'] / 100); |
|
85 | 85 | } |
86 | 86 | |
87 | 87 |
@@ -30,9 +30,9 @@ |
||
30 | 30 | $serviceLocator = $serviceLocator->getServiceLocator(); |
31 | 31 | $auth = $serviceLocator->get('AuthenticationService'); |
32 | 32 | /* @var RepositoryService $repositoryService */ |
33 | - $repositoryService = $serviceLocator->get('repositories'); |
|
33 | + $repositoryService = $serviceLocator->get('repositories'); |
|
34 | 34 | |
35 | - $translator = $serviceLocator->get('translator'); |
|
35 | + $translator = $serviceLocator->get('translator'); |
|
36 | 36 | return new ManageController($auth, $repositoryService, $translator); |
37 | 37 | } |
38 | 38 | } |
@@ -39,8 +39,8 @@ discard block |
||
39 | 39 | |
40 | 40 | public function __construct($options, $mailService, $coreOptions) |
41 | 41 | { |
42 | - $this->options=$options; |
|
43 | - $this->mailService=$mailService; |
|
42 | + $this->options = $options; |
|
43 | + $this->mailService = $mailService; |
|
44 | 44 | $this->coreOptions = $coreOptions; |
45 | 45 | } |
46 | 46 | |
@@ -51,15 +51,15 @@ discard block |
||
51 | 51 | */ |
52 | 52 | public function __invoke(AuthEvent $e) |
53 | 53 | { |
54 | - $siteName=$this->coreOptions->getSiteName(); |
|
54 | + $siteName = $this->coreOptions->getSiteName(); |
|
55 | 55 | |
56 | 56 | $user = $e->getUser(); |
57 | 57 | $userEmail = $user->info->email; |
58 | 58 | $userName = $user->info->displayName; |
59 | 59 | $resetLink = $e->getResetLink(); |
60 | 60 | |
61 | - $fromEmail = $this->options->getFromEmail(); |
|
62 | - $fromName = $this->options->getFromName(); |
|
61 | + $fromEmail = $this->options->getFromEmail(); |
|
62 | + $fromName = $this->options->getFromName(); |
|
63 | 63 | |
64 | 64 | $mail = $this->mailService->get('htmltemplate'); |
65 | 65 | $mail->user = $user; |
@@ -64,7 +64,7 @@ |
||
64 | 64 | |
65 | 65 | $this->add($fieldset); |
66 | 66 | |
67 | - $mode=$options->getMode(); |
|
67 | + $mode = $options->getMode(); |
|
68 | 68 | if (in_array($mode, [CaptchaOptions::RE_CAPTCHA, CaptchaOptions::IMAGE])) { |
69 | 69 | if ($mode == CaptchaOptions::IMAGE) { |
70 | 70 | $captcha = new Image($options->getImage()); |
@@ -121,7 +121,7 @@ |
||
121 | 121 | 'attributes' => [ |
122 | 122 | 'data-placeholder' => /*@translate*/ 'please select', |
123 | 123 | 'data-allowclear' => 'false', |
124 | - 'data-searchbox' => -1, // hide the search box |
|
124 | + 'data-searchbox' => -1, // hide the search box |
|
125 | 125 | 'required' => true, // mark label as required |
126 | 126 | ], |
127 | 127 | ) |
@@ -27,70 +27,70 @@ discard block |
||
27 | 27 | $this->setName('invoiceAddress'); |
28 | 28 | |
29 | 29 | $this->add([ |
30 | - 'type' => 'text', |
|
31 | - 'name' => 'company', |
|
32 | - 'options' => [ |
|
33 | - 'label' => /*@translate*/ 'Company', |
|
34 | - 'description' => /*@translate*/ 'Please enter the name of the company, which should appear on the invoice address', |
|
35 | - ], |
|
36 | - 'attributes' => [ |
|
37 | - 'required' => true, // marks the label as required. |
|
38 | - ] |
|
39 | - ] |
|
30 | + 'type' => 'text', |
|
31 | + 'name' => 'company', |
|
32 | + 'options' => [ |
|
33 | + 'label' => /*@translate*/ 'Company', |
|
34 | + 'description' => /*@translate*/ 'Please enter the name of the company, which should appear on the invoice address', |
|
35 | + ], |
|
36 | + 'attributes' => [ |
|
37 | + 'required' => true, // marks the label as required. |
|
38 | + ] |
|
39 | + ] |
|
40 | 40 | ); |
41 | 41 | |
42 | 42 | $this->add([ |
43 | - 'type' => 'text', |
|
44 | - 'name' => 'street', |
|
45 | - 'options' => [ |
|
46 | - 'label' => /*@translate*/ 'Street', |
|
47 | - ], |
|
48 | - ] |
|
43 | + 'type' => 'text', |
|
44 | + 'name' => 'street', |
|
45 | + 'options' => [ |
|
46 | + 'label' => /*@translate*/ 'Street', |
|
47 | + ], |
|
48 | + ] |
|
49 | 49 | ); |
50 | 50 | |
51 | 51 | $this->add([ |
52 | - 'type' => 'text', |
|
53 | - 'name' => 'zipCode', |
|
54 | - 'options' => [ |
|
55 | - 'label' => /* @translate */ 'Postalcode' |
|
56 | - ], |
|
57 | - ] |
|
52 | + 'type' => 'text', |
|
53 | + 'name' => 'zipCode', |
|
54 | + 'options' => [ |
|
55 | + 'label' => /* @translate */ 'Postalcode' |
|
56 | + ], |
|
57 | + ] |
|
58 | 58 | ); |
59 | 59 | |
60 | 60 | $this->add([ |
61 | - 'type' => 'text', |
|
62 | - 'name' => 'city', |
|
63 | - 'options' => [ |
|
64 | - 'label' => /*@translate*/ 'City', |
|
65 | - ], |
|
66 | - ] |
|
61 | + 'type' => 'text', |
|
62 | + 'name' => 'city', |
|
63 | + 'options' => [ |
|
64 | + 'label' => /*@translate*/ 'City', |
|
65 | + ], |
|
66 | + ] |
|
67 | 67 | ); |
68 | 68 | |
69 | 69 | $this->add([ |
70 | - 'type' => 'text', |
|
71 | - 'name' => 'region', |
|
72 | - 'options' => [ |
|
73 | - 'label' => /*@translate*/ 'Region', |
|
74 | - ], |
|
75 | - ] |
|
70 | + 'type' => 'text', |
|
71 | + 'name' => 'region', |
|
72 | + 'options' => [ |
|
73 | + 'label' => /*@translate*/ 'Region', |
|
74 | + ], |
|
75 | + ] |
|
76 | 76 | ); |
77 | 77 | |
78 | 78 | $this->add([ |
79 | - 'type' => 'text', |
|
80 | - 'name' => 'country', |
|
81 | - 'options' => [ |
|
82 | - 'label' => /*@translate*/ 'Country', |
|
83 | - ], |
|
84 | - ] |
|
79 | + 'type' => 'text', |
|
80 | + 'name' => 'country', |
|
81 | + 'options' => [ |
|
82 | + 'label' => /*@translate*/ 'Country', |
|
83 | + ], |
|
84 | + ] |
|
85 | 85 | ); |
86 | 86 | |
87 | 87 | $this->add([ |
88 | - 'type' => 'text', |
|
89 | - 'name' => 'vatIdNumber', |
|
90 | - 'options' => [ |
|
91 | - 'label' => /*@translate*/ 'Value added tax ID', |
|
92 | - ], |
|
93 | - ] |
|
88 | + 'type' => 'text', |
|
89 | + 'name' => 'vatIdNumber', |
|
90 | + 'options' => [ |
|
91 | + 'label' => /*@translate*/ 'Value added tax ID', |
|
92 | + ], |
|
93 | + ] |
|
94 | 94 | ); |
95 | 95 | $this->add( |
96 | 96 | array( |
@@ -114,25 +114,25 @@ discard block |
||
114 | 114 | ); |
115 | 115 | |
116 | 116 | $this->add([ |
117 | - 'type' => 'text', |
|
118 | - 'name' => 'name', |
|
119 | - 'options' => [ |
|
120 | - 'label' => /*@translate*/ 'Contact Person', |
|
121 | - 'description' => /*@translate*/ 'Please enter the name of a contact person', |
|
122 | - ], |
|
123 | - ] |
|
117 | + 'type' => 'text', |
|
118 | + 'name' => 'name', |
|
119 | + 'options' => [ |
|
120 | + 'label' => /*@translate*/ 'Contact Person', |
|
121 | + 'description' => /*@translate*/ 'Please enter the name of a contact person', |
|
122 | + ], |
|
123 | + ] |
|
124 | 124 | ); |
125 | 125 | |
126 | 126 | $this->add([ |
127 | - 'type' => 'text', |
|
128 | - 'name' => 'email', |
|
129 | - 'options' => [ |
|
130 | - 'label' => /*@translate*/ 'Email Address', |
|
131 | - ], |
|
132 | - 'attributes' => [ |
|
133 | - 'required' => true, // marks the label as required. |
|
134 | - ] |
|
135 | - ] |
|
127 | + 'type' => 'text', |
|
128 | + 'name' => 'email', |
|
129 | + 'options' => [ |
|
130 | + 'label' => /*@translate*/ 'Email Address', |
|
131 | + ], |
|
132 | + 'attributes' => [ |
|
133 | + 'required' => true, // marks the label as required. |
|
134 | + ] |
|
135 | + ] |
|
136 | 136 | ); |
137 | 137 | } |
138 | 138 |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | $elements = [ |
60 | 60 | 'general' => [ |
61 | 61 | 'priority' => 0, |
62 | - 'options' => [ 'label' => 'Basic Data' ], |
|
62 | + 'options' => ['label' => 'Basic Data'], |
|
63 | 63 | 'property' => true, |
64 | 64 | 'forms' => [ |
65 | 65 | |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | |
96 | 96 | 'description' => [ |
97 | 97 | 'priority' => '0', |
98 | - 'options' => [ 'label' => 'Job opening' ], |
|
98 | + 'options' => ['label' => 'Job opening'], |
|
99 | 99 | 'property' => true, |
100 | 100 | 'forms' => [ |
101 | 101 | 'descriptionForm' => array( |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | |
108 | 108 | 'preview' => [ |
109 | 109 | 'priority' => 0, |
110 | - 'options' => [ 'label' => 'Preview' ], |
|
110 | + 'options' => ['label' => 'Preview'], |
|
111 | 111 | 'property' => true, |
112 | 112 | 'forms' => [ |
113 | 113 | 'previewForm' => array( |
@@ -120,13 +120,13 @@ discard block |
||
120 | 120 | |
121 | 121 | $this->setForms($elements); |
122 | 122 | |
123 | - $events = $this->getEventManager(); |
|
123 | + $events = $this->getEventManager(); |
|
124 | 124 | $events->trigger(FormEvent::EVENT_INIT, $this); |
125 | 125 | } |
126 | 126 | |
127 | 127 | public function renderPost(Renderer $renderer) |
128 | 128 | { |
129 | - $coreformsjs = $renderer->basepath('/Core/js/core.forms.js'); |
|
129 | + $coreformsjs = $renderer->basepath('/Core/js/core.forms.js'); |
|
130 | 130 | $javaScript = <<<JS |
131 | 131 | $(document).ready(function() { |
132 | 132 |
@@ -118,11 +118,11 @@ |
||
118 | 118 | { |
119 | 119 | $services = $this->getServiceLocator()->getServiceLocator(); |
120 | 120 | |
121 | - /* |
|
121 | + /* |
|
122 | 122 | * "ViewHelperManager" defined by ZF2 |
123 | 123 | * see http://framework.zend.com/manual/2.0/en/modules/zend.mvc.services.html#viewmanager |
124 | 124 | */ |
125 | - $viewManager = $services->get('ViewHelperManager'); |
|
125 | + $viewManager = $services->get('ViewHelperManager'); |
|
126 | 126 | |
127 | 127 | return $viewManager->get("partial")->__invoke('applications/mail/forward', array("application"=>$this->application)); |
128 | 128 | } |