@@ -81,12 +81,12 @@ discard block |
||
| 81 | 81 | $url = $router->assemble( |
| 82 | 82 | array('action' => 'accept'), |
| 83 | 83 | array( |
| 84 | - 'name' => 'lang/organizations/invite', |
|
| 85 | - 'query' => array( |
|
| 86 | - 'token' => $this->options['token'], |
|
| 87 | - 'organization' => $org->getId() |
|
| 88 | - ) |
|
| 89 | - ) |
|
| 84 | + 'name' => 'lang/organizations/invite', |
|
| 85 | + 'query' => array( |
|
| 86 | + 'token' => $this->options['token'], |
|
| 87 | + 'organization' => $org->getId() |
|
| 88 | + ) |
|
| 89 | + ) |
|
| 90 | 90 | ); |
| 91 | 91 | |
| 92 | 92 | $variables = array( |
@@ -107,14 +107,14 @@ discard block |
||
| 107 | 107 | |
| 108 | 108 | $mail = $serviceLocator->get('htmltemplate'); |
| 109 | 109 | $mail->setTemplate($this->options['template']) |
| 110 | - ->setVariables($variables) |
|
| 111 | - ->setSubject( |
|
| 112 | - sprintf( |
|
| 113 | - /* @translate */ 'Invitation to join the team of %s', |
|
| 114 | - $orgName |
|
| 115 | - ) |
|
| 116 | - ) |
|
| 117 | - ->addTo($user->getEmail()); |
|
| 110 | + ->setVariables($variables) |
|
| 111 | + ->setSubject( |
|
| 112 | + sprintf( |
|
| 113 | + /* @translate */ 'Invitation to join the team of %s', |
|
| 114 | + $orgName |
|
| 115 | + ) |
|
| 116 | + ) |
|
| 117 | + ->addTo($user->getEmail()); |
|
| 118 | 118 | |
| 119 | 119 | return $mail; |
| 120 | 120 | } |
@@ -179,9 +179,9 @@ discard block |
||
| 179 | 179 | $location = new Location(); |
| 180 | 180 | $coords = array_map(function($i) { return (float) $i; }, $locData['coordinates']); |
| 181 | 181 | $location->setCountry($locData['country']) |
| 182 | - ->setRegion($locData['region']) |
|
| 183 | - ->setCity($locData['city']) |
|
| 184 | - ->setCoordinates(new Point($coords)); |
|
| 182 | + ->setRegion($locData['region']) |
|
| 183 | + ->setCity($locData['city']) |
|
| 184 | + ->setCoordinates(new Point($coords)); |
|
| 185 | 185 | |
| 186 | 186 | $jobLocations->add($location); |
| 187 | 187 | } |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | /* @var $jobEvents \Zend\EventManager\EventManager */ |
| 213 | 213 | $jobEvents = $services->get('Jobs/Events'); |
| 214 | 214 | $jobEvent->setName(JobEvent::EVENT_JOB_ACCEPTED) |
| 215 | - ->setTarget($this); |
|
| 215 | + ->setTarget($this); |
|
| 216 | 216 | $responses = $jobEvents->trigger($jobEvent); |
| 217 | 217 | foreach ($responses as $response) { |
| 218 | 218 | // responses from the portals |
@@ -40,8 +40,8 @@ |
||
| 40 | 40 | |
| 41 | 41 | $plugin = new AcceptInvitationHandler(); |
| 42 | 42 | $plugin->setUserRepository($userRepository) |
| 43 | - ->setOrganizationRepository($organizationRepository) |
|
| 44 | - ->setAuthenticationService($authenticationService); |
|
| 43 | + ->setOrganizationRepository($organizationRepository) |
|
| 44 | + ->setAuthenticationService($authenticationService); |
|
| 45 | 45 | |
| 46 | 46 | return $plugin; |
| 47 | 47 | } |
@@ -42,7 +42,7 @@ |
||
| 42 | 42 | $this->filterSortParam($params); |
| 43 | 43 | $paginator = $this->createPaginator($repository, $params); |
| 44 | 44 | $paginator->setCurrentPageNumber($params->get('page', 1)) |
| 45 | - ->setItemCountPerPage($params->get('count', 10)); |
|
| 45 | + ->setItemCountPerPage($params->get('count', 10)); |
|
| 46 | 46 | |
| 47 | 47 | return $paginator; |
| 48 | 48 | |
@@ -62,6 +62,6 @@ |
||
| 62 | 62 | ) |
| 63 | 63 | ) |
| 64 | 64 | ) |
| 65 | - ); |
|
| 65 | + ); |
|
| 66 | 66 | } |
| 67 | 67 | } |
@@ -23,8 +23,8 @@ |
||
| 23 | 23 | { |
| 24 | 24 | |
| 25 | 25 | /** (non-PHPdoc) |
| 26 | - * @see \Zend\ServiceManager\FactoryInterface::createService() |
|
| 27 | - */ |
|
| 26 | + * @see \Zend\ServiceManager\FactoryInterface::createService() |
|
| 27 | + */ |
|
| 28 | 28 | public function createService(ServiceLocatorInterface $serviceLocator) |
| 29 | 29 | { |
| 30 | 30 | |
@@ -136,13 +136,13 @@ |
||
| 136 | 136 | { |
| 137 | 137 | $mail = $this->mailer->get('htmltemplate'); |
| 138 | 138 | $mail->setTemplate($template) |
| 139 | - ->setSubject($subject) |
|
| 140 | - ->setVariables( |
|
| 141 | - array( |
|
| 139 | + ->setSubject($subject) |
|
| 140 | + ->setVariables( |
|
| 141 | + array( |
|
| 142 | 142 | 'job' => $job, |
| 143 | 143 | 'siteName' => $this->options['siteName'], |
| 144 | 144 | ) |
| 145 | - ); |
|
| 145 | + ); |
|
| 146 | 146 | |
| 147 | 147 | if ($adminMail) { |
| 148 | 148 | $mail->setTo($this->options['adminEmail']); |
@@ -43,7 +43,7 @@ |
||
| 43 | 43 | |
| 44 | 44 | $helper = new FormEditorLight(); |
| 45 | 45 | if(isset($config['view_helper_config']['form_editor']['light']) && is_array($config['view_helper_config']['form_editor']['light'])){ |
| 46 | - $helper->setOptions($config['view_helper_config']['form_editor']['light']); |
|
| 46 | + $helper->setOptions($config['view_helper_config']['form_editor']['light']); |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | $helper->setOption('theme' , 'modern'); |
@@ -36,11 +36,11 @@ |
||
| 36 | 36 | } |
| 37 | 37 | $entity = new Location(); |
| 38 | 38 | $entity->setCity($data['city']) |
| 39 | - ->setRegion($data['region']) |
|
| 40 | - ->setPostalcode($data['postalcode']) |
|
| 41 | - ->setCountry($data['country']); |
|
| 39 | + ->setRegion($data['region']) |
|
| 40 | + ->setPostalcode($data['postalcode']) |
|
| 41 | + ->setCountry($data['country']); |
|
| 42 | 42 | if (!empty($data['coordinates'])) { |
| 43 | - $entity->setCoordinates(new Point($data['coordinates'])); |
|
| 43 | + $entity->setCoordinates(new Point($data['coordinates'])); |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | return $entity; |