@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | */ |
49 | 49 | public function getSubscribedEvents() |
50 | 50 | { |
51 | - if (! $this->manager->isEnabled()) { |
|
51 | + if (!$this->manager->isEnabled()) { |
|
52 | 52 | return []; |
53 | 53 | } |
54 | 54 | |
@@ -66,19 +66,19 @@ discard block |
||
66 | 66 | $organization = $eventArgs->getDocument(); |
67 | 67 | |
68 | 68 | // check for a organization instance |
69 | - if (! $organization instanceof Organization) { |
|
69 | + if (!$organization instanceof Organization) { |
|
70 | 70 | return; |
71 | 71 | } |
72 | 72 | |
73 | 73 | // check if the image has been changed |
74 | - if (! $eventArgs->hasChangedField('image')) { |
|
74 | + if (!$eventArgs->hasChangedField('image')) { |
|
75 | 75 | return; |
76 | 76 | } |
77 | 77 | |
78 | 78 | $image = $eventArgs->getOldValue('image'); |
79 | 79 | |
80 | 80 | // check if any image existed |
81 | - if (! $image instanceof OrganizationImage) { |
|
81 | + if (!$image instanceof OrganizationImage) { |
|
82 | 82 | return; |
83 | 83 | } |
84 | 84 |
@@ -87,7 +87,7 @@ |
||
87 | 87 | } |
88 | 88 | |
89 | 89 | /** |
90 | - * @param LifecycleEventArgs $eventArgs |
|
90 | + * @param PostFlushEventArgs $eventArgs |
|
91 | 91 | */ |
92 | 92 | public function postFlush(PostFlushEventArgs $eventArgs) |
93 | 93 | { |
@@ -45,7 +45,7 @@ |
||
45 | 45 | */ |
46 | 46 | public function __construct($options = null) |
47 | 47 | { |
48 | - $this->filePath = __DIR__ . '/../../../../../public' . $this->uriPath; |
|
48 | + $this->filePath = __DIR__.'/../../../../../public'.$this->uriPath; |
|
49 | 49 | |
50 | 50 | parent::__construct($options); |
51 | 51 | } |
@@ -91,7 +91,7 @@ |
||
91 | 91 | */ |
92 | 92 | protected function injectAttachableEntityManager(AttachableEntityInterface $entity) |
93 | 93 | { |
94 | - if (! isset($this->attachableEntityManagerPrototype)) { |
|
94 | + if (!isset($this->attachableEntityManagerPrototype)) { |
|
95 | 95 | $this->attachableEntityManagerPrototype = new AttachableEntityManager($this->services->get('repositories')); |
96 | 96 | } |
97 | 97 |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | { |
54 | 54 | $className = get_class($entity); |
55 | 55 | |
56 | - if (! isset($key)) { |
|
56 | + if (!isset($key)) { |
|
57 | 57 | $key = $className; |
58 | 58 | } |
59 | 59 | |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | $entityId = $entity->getId(); |
64 | 64 | |
65 | 65 | // check if entity is not persisted |
66 | - if (! $entityId) { |
|
66 | + if (!$entityId) { |
|
67 | 67 | // persist entity & retrieve its ID |
68 | 68 | $this->repositories->getRepository($className)->store($entity); |
69 | 69 | $entityId = $entity->getId(); |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | */ |
82 | 82 | public function getAttachedEntity($key) |
83 | 83 | { |
84 | - if (! isset($this->references[$key])) { |
|
84 | + if (!isset($this->references[$key])) { |
|
85 | 85 | return; |
86 | 86 | } |
87 | 87 | |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | $entity = $this->repositories->getRepository($reference['repository']) |
90 | 90 | ->find($reference['id']); |
91 | 91 | |
92 | - if (! $entity) { |
|
92 | + if (!$entity) { |
|
93 | 93 | // remove reference if entity does not exists |
94 | 94 | unset($this->references[$key]); |
95 | 95 | } |
@@ -30,12 +30,12 @@ |
||
30 | 30 | public function listAction() |
31 | 31 | { |
32 | 32 | |
33 | - $channel = $this->params()->fromRoute('channel','default'); |
|
33 | + $channel = $this->params()->fromRoute('channel', 'default'); |
|
34 | 34 | |
35 | 35 | /* @var Paginator $paginator */ |
36 | - $paginator = $this->paginator('Jobs/Job', ['channel' => $channel ]); |
|
36 | + $paginator = $this->paginator('Jobs/Job', ['channel' => $channel]); |
|
37 | 37 | |
38 | - $viewModel=new ViewModel(); |
|
38 | + $viewModel = new ViewModel(); |
|
39 | 39 | $viewModel->setVariables( |
40 | 40 | [ |
41 | 41 | 'jobs' => $paginator, |
@@ -73,8 +73,8 @@ discard block |
||
73 | 73 | |
74 | 74 | public function injectXmlTemplate(MvcEvent $e) |
75 | 75 | { |
76 | - $format = $e->getRouteMatch()->getParam('format',"html"); |
|
77 | - $channel = $e->getRouteMatch()->getParam('channel',"default"); |
|
76 | + $format = $e->getRouteMatch()->getParam('format', "html"); |
|
77 | + $channel = $e->getRouteMatch()->getParam('channel', "default"); |
|
78 | 78 | |
79 | 79 | if ('xml' == $format) { |
80 | 80 | $viewModel = $e->getResult(); |
@@ -83,8 +83,8 @@ discard block |
||
83 | 83 | } |
84 | 84 | $resolver = $e->getApplication()->getServiceManager()->get('ViewResolver'); |
85 | 85 | |
86 | - $templateDefault = $viewModel->getTemplate() . '.xml.phtml'; |
|
87 | - $templateChannel = $viewModel->getTemplate() . '.' . $channel . '.xml.phtml'; |
|
86 | + $templateDefault = $viewModel->getTemplate().'.xml.phtml'; |
|
87 | + $templateChannel = $viewModel->getTemplate().'.'.$channel.'.xml.phtml'; |
|
88 | 88 | |
89 | 89 | |
90 | 90 | if ($channel != 'default' && $resolver->resolve($templateChannel)) { |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | |
102 | 102 | /* @var Response $response */ |
103 | 103 | $response = $e->getResponse(); |
104 | - $response->getHeaders()->addHeaderLine('Content-Type','application/xml'); |
|
104 | + $response->getHeaders()->addHeaderLine('Content-Type', 'application/xml'); |
|
105 | 105 | } |
106 | 106 | |
107 | 107 | } |
@@ -123,10 +123,10 @@ |
||
123 | 123 | * @param $options |
124 | 124 | */ |
125 | 125 | public function setOptions($options){ |
126 | - foreach($options as $key=>$val) { |
|
126 | + foreach($options as $key=>$val) { |
|
127 | 127 | if (array_key_exists($this->options,$key)) { |
128 | 128 | $this->options[$key]=$val; |
129 | 129 | } |
130 | - } |
|
130 | + } |
|
131 | 131 | } |
132 | 132 | } |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | |
78 | 78 | public function __invoke(Job $jobEntity, $options = []) |
79 | 79 | { |
80 | - $options= array_merge($this->options, $options); |
|
80 | + $options = array_merge($this->options, $options); |
|
81 | 81 | |
82 | 82 | $ats = $jobEntity->getAtsMode(); |
83 | 83 | |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | |
92 | 92 | if ($ats->isIntern() || $ats->isEmail()) { |
93 | 93 | |
94 | - $query = [ 'subscriberUri' => $serverUrlHelper(array()) . '/subscriber/' . 1 ]; |
|
94 | + $query = ['subscriberUri' => $serverUrlHelper(array()).'/subscriber/'.1]; |
|
95 | 95 | $route = 'lang/apply'; |
96 | 96 | $params = [ |
97 | 97 | 'applyId' => $jobEntity->getApplyId(), |
@@ -106,12 +106,12 @@ discard block |
||
106 | 106 | $url = $ats->getUri(); |
107 | 107 | } |
108 | 108 | |
109 | - if($options['linkOnly']){ |
|
110 | - $result=$url; |
|
111 | - if($options['absolute']) { |
|
109 | + if ($options['linkOnly']) { |
|
110 | + $result = $url; |
|
111 | + if ($options['absolute']) { |
|
112 | 112 | $result = $serverUrlHelper($url); |
113 | 113 | } |
114 | - }else{ |
|
114 | + } else { |
|
115 | 115 | $translate = $this->translateHelper; |
116 | 116 | $result = sprintf('<a href="%s" rel="nofollow">%s</a>', $url, $translate('Apply')); |
117 | 117 | } |
@@ -122,10 +122,10 @@ discard block |
||
122 | 122 | /** |
123 | 123 | * @param $options |
124 | 124 | */ |
125 | - public function setOptions($options){ |
|
126 | - foreach($options as $key=>$val) { |
|
127 | - if (array_key_exists($this->options,$key)) { |
|
128 | - $this->options[$key]=$val; |
|
125 | + public function setOptions($options) { |
|
126 | + foreach ($options as $key=>$val) { |
|
127 | + if (array_key_exists($this->options, $key)) { |
|
128 | + $this->options[$key] = $val; |
|
129 | 129 | } |
130 | 130 | } |
131 | 131 | } |
@@ -111,7 +111,7 @@ |
||
111 | 111 | if($options['absolute']) { |
112 | 112 | $result = $serverUrlHelper($url); |
113 | 113 | } |
114 | - }else{ |
|
114 | + } else{ |
|
115 | 115 | $translate = $this->translateHelper; |
116 | 116 | $result = sprintf('<a href="%s" rel="nofollow">%s</a>', $url, $translate('Apply')); |
117 | 117 | } |
@@ -102,10 +102,10 @@ |
||
102 | 102 | } |
103 | 103 | }else{ |
104 | 104 | $result = sprintf('<a href="%s" rel="%s" %s>%s</a>', |
105 | - $url, |
|
106 | - $options['rel'], |
|
107 | - $options['target']?"target=" . $options['target']:"", |
|
108 | - strip_tags($jobEntity->getTitle())); |
|
105 | + $url, |
|
106 | + $options['rel'], |
|
107 | + $options['target']?"target=" . $options['target']:"", |
|
108 | + strip_tags($jobEntity->getTitle())); |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | return $result; |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | public function __invoke(Job $jobEntity, $options = []) |
61 | 61 | { |
62 | 62 | |
63 | - $options= array_merge($this->options, $options); |
|
63 | + $options = array_merge($this->options, $options); |
|
64 | 64 | $paramsHelper = $this->paramsHelper; |
65 | 65 | $urlHelper = $this->urlHelper; |
66 | 66 | $serverUrlHelper = $this->serverUrlHelper; |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | if (!empty($jobEntity->getLink())) { |
70 | 70 | $url = $jobEntity->getLink(); |
71 | 71 | $isExternalLink = true; |
72 | - }elseif($options['showPendingJobs']) { |
|
72 | + }elseif ($options['showPendingJobs']) { |
|
73 | 73 | $url = $urlHelper( |
74 | 74 | 'lang/jobs/approval', |
75 | 75 | [], |
@@ -79,10 +79,10 @@ discard block |
||
79 | 79 | ] |
80 | 80 | ], true); |
81 | 81 | |
82 | - }else{ |
|
82 | + } else { |
|
83 | 83 | |
84 | 84 | $query = [ |
85 | - 'subscriberUri' => $serverUrlHelper([]) . '/subscriber/' . 1, |
|
85 | + 'subscriberUri' => $serverUrlHelper([]).'/subscriber/'.1, |
|
86 | 86 | 'id' => $jobEntity->getId() |
87 | 87 | ]; |
88 | 88 | $route = 'lang/jobs/view'; |
@@ -95,16 +95,16 @@ discard block |
||
95 | 95 | $url = $urlHelper($route, $params, array('query' => $query)); |
96 | 96 | } |
97 | 97 | |
98 | - if ($options['linkOnly']){ |
|
98 | + if ($options['linkOnly']) { |
|
99 | 99 | $result = $url; |
100 | - if ($options['absolute'] && !$isExternalLink){ |
|
100 | + if ($options['absolute'] && !$isExternalLink) { |
|
101 | 101 | $result = $serverUrlHelper($url); |
102 | 102 | } |
103 | - }else{ |
|
103 | + } else { |
|
104 | 104 | $result = sprintf('<a href="%s" rel="%s" %s>%s</a>', |
105 | 105 | $url, |
106 | 106 | $options['rel'], |
107 | - $options['target']?"target=" . $options['target']:"", |
|
107 | + $options['target'] ? "target=".$options['target'] : "", |
|
108 | 108 | strip_tags($jobEntity->getTitle())); |
109 | 109 | } |
110 | 110 | |
@@ -114,10 +114,10 @@ discard block |
||
114 | 114 | /** |
115 | 115 | * @param $options |
116 | 116 | */ |
117 | - public function setOptions($options){ |
|
118 | - foreach($options as $key=>$val) { |
|
119 | - if (array_key_exists($this->options,$key)) { |
|
120 | - $this->options[$key]=$val; |
|
117 | + public function setOptions($options) { |
|
118 | + foreach ($options as $key=>$val) { |
|
119 | + if (array_key_exists($this->options, $key)) { |
|
120 | + $this->options[$key] = $val; |
|
121 | 121 | } |
122 | 122 | } |
123 | 123 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | if (!empty($jobEntity->getLink())) { |
70 | 70 | $url = $jobEntity->getLink(); |
71 | 71 | $isExternalLink = true; |
72 | - }elseif($options['showPendingJobs']) { |
|
72 | + } elseif($options['showPendingJobs']) { |
|
73 | 73 | $url = $urlHelper( |
74 | 74 | 'lang/jobs/approval', |
75 | 75 | [], |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | ] |
80 | 80 | ], true); |
81 | 81 | |
82 | - }else{ |
|
82 | + } else{ |
|
83 | 83 | |
84 | 84 | $query = [ |
85 | 85 | 'subscriberUri' => $serverUrlHelper([]) . '/subscriber/' . 1, |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | if ($options['absolute'] && !$isExternalLink){ |
101 | 101 | $result = $serverUrlHelper($url); |
102 | 102 | } |
103 | - }else{ |
|
103 | + } else{ |
|
104 | 104 | $result = sprintf('<a href="%s" rel="%s" %s>%s</a>', |
105 | 105 | $url, |
106 | 106 | $options['rel'], |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | return $this; |
70 | 70 | } |
71 | 71 | |
72 | - public function getUsername(){ |
|
72 | + public function getUsername() { |
|
73 | 73 | return $this->connectionConfig['username']; |
74 | 74 | } |
75 | 75 | |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | return $this; |
81 | 81 | } |
82 | 82 | |
83 | - public function getPassword(){ |
|
83 | + public function getPassword() { |
|
84 | 84 | return $this->connectionConfig['password']; |
85 | 85 | } |
86 | 86 | |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | return $this; |
92 | 92 | } |
93 | 93 | |
94 | - public function getSsl(){ |
|
94 | + public function getSsl() { |
|
95 | 95 | return $this->connectionConfig['ssl']; |
96 | 96 | } |
97 | 97 | } |
98 | 98 | \ No newline at end of file |