@@ -30,11 +30,11 @@ |
||
| 30 | 30 | */ |
| 31 | 31 | class Module |
| 32 | 32 | { |
| 33 | - /** |
|
| 34 | - * Loads module specific configuration. |
|
| 35 | - * |
|
| 36 | - * @return array |
|
| 37 | - */ |
|
| 33 | + /** |
|
| 34 | + * Loads module specific configuration. |
|
| 35 | + * |
|
| 36 | + * @return array |
|
| 37 | + */ |
|
| 38 | 38 | public function getConfig() |
| 39 | 39 | { |
| 40 | 40 | return ModuleConfigLoader::load(__DIR__ . '/config'); |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | * |
| 59 | 59 | * @param EventManagerInterface $events |
| 60 | 60 | * @param integer $priority |
| 61 | - */ |
|
| 61 | + */ |
|
| 62 | 62 | public function attach(EventManagerInterface $events) |
| 63 | 63 | { |
| 64 | 64 | $this->listeners[] = $events->attach(MvcEvent::EVENT_ROUTE, array($this, 'onRoute'), -10); |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | $acl = $this->getAcl(); |
| 113 | 113 | |
| 114 | 114 | if ($acl->hasResource($resourceId) && !$acl->isAllowed($role, $resourceId, $privilege)) { |
| 115 | - /* |
|
| 115 | + /* |
|
| 116 | 116 | * Exceptions are only catched within the dispatch listener, so |
| 117 | 117 | * we have to set the exception manually in the event |
| 118 | 118 | * and trigger the DISPATCH_ERROR event. |
@@ -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']); |