@@ -96,8 +96,7 @@ |
||
96 | 96 | 'content' => $content, |
97 | 97 | ) |
98 | 98 | ); |
99 | - } |
|
100 | - elseif ($postProfiles) { |
|
99 | + } elseif ($postProfiles) { |
|
101 | 100 | $formSocialProfiles->setData($this->params()->fromPost()); |
102 | 101 | |
103 | 102 | if ($formSocialProfiles->isValid()) { |
@@ -411,8 +411,7 @@ |
||
411 | 411 | } else { |
412 | 412 | $notFoundUsers[] = $grp_member . $loginSuffix; |
413 | 413 | } |
414 | - } |
|
415 | - catch (\Auth\Exception\UserDeactivatedException $e) |
|
414 | + } catch (\Auth\Exception\UserDeactivatedException $e) |
|
416 | 415 | { |
417 | 416 | $notFoundUsers[] = $grp_member . $loginSuffix; |
418 | 417 | } |
@@ -82,7 +82,7 @@ |
||
82 | 82 | $result = true; |
83 | 83 | try{ |
84 | 84 | $repo->store($user); |
85 | - }catch (\Exception $e){ |
|
85 | + } catch (\Exception $e){ |
|
86 | 86 | throw $e; |
87 | 87 | } |
88 | 88 | return $result; |
@@ -60,9 +60,11 @@ |
||
60 | 60 | { |
61 | 61 | $items = []; |
62 | 62 | |
63 | - foreach ($this->repository->getUserOrganizations($user->getId(), $limit) as $organization) /* @var $organization \Organizations\Entity\Organization */ |
|
63 | + foreach ($this->repository->getUserOrganizations($user->getId(), $limit) as $organization) { |
|
64 | + /* @var $organization \Organizations\Entity\Organization */ |
|
64 | 65 | { |
65 | 66 | $name = $organization->getOrganizationName(); |
67 | + } |
|
66 | 68 | $title = $name ? $name->getName() : '**** DRAFT ****'; |
67 | 69 | $url = $view->url('lang/organizations/edit', ['id' => $organization->getId()]); |
68 | 70 | $items[] = new ListItem($title, $url); |
@@ -54,9 +54,11 @@ |
||
54 | 54 | return $items; |
55 | 55 | } |
56 | 56 | |
57 | - foreach ($employees->slice(0, $limit) as $employee) /* @var $employee \Organizations\Entity\Employee */ |
|
57 | + foreach ($employees->slice(0, $limit) as $employee) { |
|
58 | + /* @var $employee \Organizations\Entity\Employee */ |
|
58 | 59 | { |
59 | 60 | $info = $employee->getUser()->getInfo(); |
61 | + } |
|
60 | 62 | $title = $info->getDisplayName(); |
61 | 63 | $items[] = new ListItem($title); |
62 | 64 | } |
@@ -60,9 +60,11 @@ |
||
60 | 60 | { |
61 | 61 | $items = []; |
62 | 62 | |
63 | - foreach ($this->repository->getUserJobs($user->getId(), $limit) as $job) /* @var $job \Jobs\Entity\Job */ |
|
63 | + foreach ($this->repository->getUserJobs($user->getId(), $limit) as $job) { |
|
64 | + /* @var $job \Jobs\Entity\Job */ |
|
64 | 65 | { |
65 | 66 | $title = $job->getTitle() ?: $view->translate('untitled'); |
67 | + } |
|
66 | 68 | $title .= ' ('. $view->dateFormat($job->getDateCreated(), 'short', 'none') . ')'; |
67 | 69 | $url = $view->url('lang/jobs/manage', ['action' => 'edit'], [ |
68 | 70 | 'query' => [ |
@@ -60,9 +60,11 @@ |
||
60 | 60 | { |
61 | 61 | $items = []; |
62 | 62 | |
63 | - foreach ($this->repository->getUserApplications($user->getId(), $limit) as $application) /* @var $application \Applications\Entity\Application */ |
|
63 | + foreach ($this->repository->getUserApplications($user->getId(), $limit) as $application) { |
|
64 | + /* @var $application \Applications\Entity\Application */ |
|
64 | 65 | { |
65 | 66 | $title = $application->getJob()->getTitle(); |
67 | + } |
|
66 | 68 | $title .= ' ('. $view->dateFormat($application->getDateCreated()) . ')'; |
67 | 69 | $url = $view->url('lang/applications/detail', ['id' => $application->getId()]); |
68 | 70 | $items[] = new ListItem($title, $url); |
@@ -45,8 +45,7 @@ |
||
45 | 45 | $callback = $this->filter->setData($_GET)->getValue('callback'); |
46 | 46 | |
47 | 47 | $status = $this->filter->getValue('status'); |
48 | - if (true === $status) { $status = null; } |
|
49 | - elseif (!$status) { $status = StatusInterface::ACTIVE; } |
|
48 | + if (true === $status) { $status = null; } elseif (!$status) { $status = StatusInterface::ACTIVE; } |
|
50 | 49 | |
51 | 50 | try { |
52 | 51 | $jobs = $this->jobRepository->findByOrganization($organizationId, $status); |
@@ -65,10 +65,12 @@ |
||
65 | 65 | %s |
66 | 66 | </div>'; |
67 | 67 | |
68 | - foreach ($container as $form) /* @var $form \Laminas\Form\Form */ |
|
68 | + foreach ($container as $form) { |
|
69 | + /* @var $form \Laminas\Form\Form */ |
|
69 | 70 | { |
70 | 71 | $formsMarkup .= sprintf($formTemplateWrapper, $formContainerHelper->renderElement($form, $layout, $parameter)); |
71 | 72 | } |
73 | + } |
|
72 | 74 | |
73 | 75 | $templateForm = $container->getTemplateForm(); |
74 | 76 | $templateMarkup = sprintf( |