@@ -92,9 +92,9 @@ discard block |
||
| 92 | 92 | |
| 93 | 93 | // Create a file with the class/file map. |
| 94 | 94 | // Stupid syntax highlighters make separating < from PHP declaration necessary |
| 95 | - $content = '<' . "?php\n" |
|
| 95 | + $content = '<'."?php\n" |
|
| 96 | 96 | . "\n" |
| 97 | - . 'return ' . var_export($config, true) . ';'; |
|
| 97 | + . 'return '.var_export($config, true).';'; |
|
| 98 | 98 | |
| 99 | 99 | // Fix \' strings from injected DIRECTORY_SEPARATOR usage in iterator_apply op |
| 100 | 100 | $content = str_replace("\\'", "'", $content); |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | $content = str_replace('array (', 'array(', $content); |
| 108 | 108 | |
| 109 | 109 | // Make the file end by EOL |
| 110 | - $content = rtrim($content, "\n") . "\n"; |
|
| 110 | + $content = rtrim($content, "\n")."\n"; |
|
| 111 | 111 | |
| 112 | 112 | var_export($config, true); |
| 113 | 113 | |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | * for multiple paths. |
| 23 | 23 | * example https://github.com/doctrine/DoctrineORMModule |
| 24 | 24 | */ |
| 25 | - 'paths' => [ __DIR__ . '/../src/Entity'], |
|
| 25 | + 'paths' => [__DIR__.'/../src/Entity'], |
|
| 26 | 26 | ], |
| 27 | 27 | ], |
| 28 | 28 | 'eventmanager' => [ |
@@ -35,8 +35,8 @@ discard block |
||
| 35 | 35 | ], |
| 36 | 36 | |
| 37 | 37 | 'options' => [ |
| 38 | - 'Jobs/JobboardSearchOptions' => [ 'class' => '\Jobs\Options\JobboardSearchOptions' ], |
|
| 39 | - 'Jobs/BaseFieldsetOptions' => [ 'class' => '\Jobs\Options\BaseFieldsetOptions' ], |
|
| 38 | + 'Jobs/JobboardSearchOptions' => ['class' => '\Jobs\Options\JobboardSearchOptions'], |
|
| 39 | + 'Jobs/BaseFieldsetOptions' => ['class' => '\Jobs\Options\BaseFieldsetOptions'], |
|
| 40 | 40 | ], |
| 41 | 41 | |
| 42 | 42 | 'Jobs' => [ |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | 'translation_file_patterns' => [ |
| 59 | 59 | [ |
| 60 | 60 | 'type' => 'gettext', |
| 61 | - 'base_dir' => __DIR__ . '/../language', |
|
| 61 | + 'base_dir' => __DIR__.'/../language', |
|
| 62 | 62 | 'pattern' => '%s.mo', |
| 63 | 63 | ], |
| 64 | 64 | ], |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | 'Jobboard', |
| 99 | 99 | 'Jobs/Jobboard', |
| 100 | 100 | 'Jobs/ApiJobListByChannel', |
| 101 | - 'Jobs/Template' => [ 'view', 'edittemplate' ], |
|
| 101 | + 'Jobs/Template' => ['view', 'edittemplate'], |
|
| 102 | 102 | 'Jobs/Manage' => [ |
| 103 | 103 | 'template', |
| 104 | 104 | ], |
@@ -226,7 +226,7 @@ discard block |
||
| 226 | 226 | 'Jobs/Listener/AdminWidgetProvider' => 'Jobs\Factory\Listener\AdminWidgetProviderFactory', |
| 227 | 227 | 'Jobs/ViewModelTemplateFilter' => 'Jobs\Factory\Filter\ViewModelTemplateFilterFactory', |
| 228 | 228 | 'Jobs\Model\ApiJobDehydrator' => 'Jobs\Factory\Model\ApiJobDehydratorFactory', |
| 229 | - 'Jobs/Listener/Publisher' => [Publisher::class,'factory'], |
|
| 229 | + 'Jobs/Listener/Publisher' => [Publisher::class, 'factory'], |
|
| 230 | 230 | 'Jobs/PreviewLinkHydrator' => 'Jobs\Form\Hydrator\PreviewLinkHydrator::factory', |
| 231 | 231 | 'Jobs\Auth\Dependency\ListListener' => 'Jobs\Factory\Auth\Dependency\ListListenerFactory', |
| 232 | 232 | 'Jobs/DefaultCategoriesBuilder' => 'Jobs\Factory\Repository\DefaultCategoriesBuilderFactory', |
@@ -243,7 +243,7 @@ discard block |
||
| 243 | 243 | |
| 244 | 244 | |
| 245 | 245 | 'event_manager' => [ |
| 246 | - 'Core/AdminController/Events' => [ 'listeners' => [ |
|
| 246 | + 'Core/AdminController/Events' => ['listeners' => [ |
|
| 247 | 247 | 'Jobs/Listener/AdminWidgetProvider' => \Core\Controller\AdminControllerEvent::EVENT_DASHBOARD, |
| 248 | 248 | ]], |
| 249 | 249 | |
@@ -266,7 +266,7 @@ discard block |
||
| 266 | 266 | 'Core/Ajax/Events' => ['listeners' => [ |
| 267 | 267 | \Jobs\Listener\DeleteJob::class => ['jobs.delete', true], |
| 268 | 268 | \Jobs\Listener\GetOrganizationManagers::class => ['jobs.manager-select', true], |
| 269 | - \Jobs\Listener\LoadActiveOrganizations::class => [ 'jobs.admin.activeorganizations', true], |
|
| 269 | + \Jobs\Listener\LoadActiveOrganizations::class => ['jobs.admin.activeorganizations', true], |
|
| 270 | 270 | |
| 271 | 271 | ]], |
| 272 | 272 | |
@@ -292,10 +292,10 @@ discard block |
||
| 292 | 292 | 'Jobs/ApiJobListByChannel' => 'Jobs\Controller\ApiJobListByChannelController', |
| 293 | 293 | ], |
| 294 | 294 | 'factories' => [ |
| 295 | - 'Jobs/Import' => [ Controller\ImportController::class, 'factory'], |
|
| 296 | - 'Jobs/Console' => [ConsoleController::class,'factory'], |
|
| 297 | - 'Jobs/AdminCategories' => [AdminCategoriesController::class,'factory'], |
|
| 298 | - 'Jobs/Admin' => [AdminController::class,'factory'], |
|
| 295 | + 'Jobs/Import' => [Controller\ImportController::class, 'factory'], |
|
| 296 | + 'Jobs/Console' => [ConsoleController::class, 'factory'], |
|
| 297 | + 'Jobs/AdminCategories' => [AdminCategoriesController::class, 'factory'], |
|
| 298 | + 'Jobs/Admin' => [AdminController::class, 'factory'], |
|
| 299 | 299 | 'Jobs/Template' => 'Jobs\Factory\Controller\TemplateControllerFactory', |
| 300 | 300 | 'Jobs/Index' => 'Jobs\Factory\Controller\IndexControllerFactory', |
| 301 | 301 | 'Jobs/Approval' => 'Jobs\Factory\Controller\ApprovalControllerFactory', |
@@ -328,41 +328,41 @@ discard block |
||
| 328 | 328 | 'view_manager' => [ |
| 329 | 329 | // Map template to files. Speeds up the lookup through the template stack. |
| 330 | 330 | 'template_map' => [ |
| 331 | - 'jobs/form/list-filter' => __DIR__ . '/../view/form/list-filter.phtml', |
|
| 332 | - 'jobs/form/apply-identifier' => __DIR__ . '/../view/form/apply-identifier.phtml', |
|
| 333 | - 'jobs/form/hiring-organization-select' => __DIR__ . '/../view/form/hiring-organization-select.phtml', |
|
| 334 | - 'jobs/form/multiposting-select' => __DIR__ . '/../view/form/multiposting-select.phtml', |
|
| 335 | - 'jobs/form/multiposting-checkboxes' => __DIR__ . '/../view/form/multiposting-checkboxes.phtml', |
|
| 336 | - 'jobs/form/ats-mode.view' => __DIR__ . '/../view/form/ats-mode.view.phtml', |
|
| 337 | - 'jobs/form/ats-mode.form' => __DIR__ . '/../view/form/ats-mode.form.phtml', |
|
| 338 | - 'jobs/form/company-name-fieldset' => __DIR__ . '/../view/form/company-name-fieldset.phtml', |
|
| 339 | - 'jobs/form/preview' => __DIR__ . '/../view/form/preview.phtml', |
|
| 340 | - 'jobs/form/customer-note' => __DIR__ . '/../view/form/customer-note.phtml', |
|
| 341 | - 'jobs/partials/channel-list' => __DIR__ . '/../view/partials/channel-list.phtml', |
|
| 342 | - 'jobs/assign-user' => __DIR__ . '/../view/jobs/manage/assign-user.phtml', |
|
| 343 | - 'jobs/snapshot_or_preview' => __DIR__ . '/../view/partials/snapshot_or_preview.phtml', |
|
| 344 | - 'jobs/history' => __DIR__ . '/../view/partials/history.phtml', |
|
| 345 | - 'jobs/portalsummary' => __DIR__ . '/../view/partials/portalsummary.phtml', |
|
| 346 | - 'content/jobs-publish-on-yawik' => __DIR__ . '/../view/modals/yawik.phtml', |
|
| 347 | - 'content/jobs-publish-on-jobsintown' => __DIR__ . '/../view/modals/jobsintown.phtml', |
|
| 348 | - 'content/jobs-publish-on-homepage' => __DIR__ . '/../view/modals/homepage.phtml', |
|
| 349 | - 'content/jobs-publish-on-fazjob' => __DIR__ . '/../view/modals/fazjob.phtml', |
|
| 350 | - 'content/jobs-terms-and-conditions' => __DIR__ . '/../view/jobs/index/terms.phtml', |
|
| 351 | - 'mail/job-created' => __DIR__ . '/../view/mails/job-created.phtml', |
|
| 352 | - 'mail/job-pending' => __DIR__ . '/../view/mails/job-pending.phtml', |
|
| 353 | - 'mail/job-accepted' => __DIR__ . '/../view/mails/job-accepted.phtml', |
|
| 354 | - 'mail/job-rejected' => __DIR__ . '/../view/mails/job-rejected.phtml', |
|
| 355 | - 'mail/job-created.en' => __DIR__ . '/../view/mails/job-created.en.phtml', |
|
| 356 | - 'mail/job-pending.en' => __DIR__ . '/../view/mails/job-pending.en.phtml', |
|
| 357 | - 'mail/job-accepted.en' => __DIR__ . '/../view/mails/job-accepted.en.phtml', |
|
| 358 | - 'mail/job-rejected.en' => __DIR__ . '/../view/mails/job-rejected.en.phtml', |
|
| 359 | - 'jobs/error/no-parent' => __DIR__ . '/../view/error/no-parent.phtml', |
|
| 360 | - 'jobs/error/expired' => __DIR__ . '/../view/error/expired.phtml', |
|
| 331 | + 'jobs/form/list-filter' => __DIR__.'/../view/form/list-filter.phtml', |
|
| 332 | + 'jobs/form/apply-identifier' => __DIR__.'/../view/form/apply-identifier.phtml', |
|
| 333 | + 'jobs/form/hiring-organization-select' => __DIR__.'/../view/form/hiring-organization-select.phtml', |
|
| 334 | + 'jobs/form/multiposting-select' => __DIR__.'/../view/form/multiposting-select.phtml', |
|
| 335 | + 'jobs/form/multiposting-checkboxes' => __DIR__.'/../view/form/multiposting-checkboxes.phtml', |
|
| 336 | + 'jobs/form/ats-mode.view' => __DIR__.'/../view/form/ats-mode.view.phtml', |
|
| 337 | + 'jobs/form/ats-mode.form' => __DIR__.'/../view/form/ats-mode.form.phtml', |
|
| 338 | + 'jobs/form/company-name-fieldset' => __DIR__.'/../view/form/company-name-fieldset.phtml', |
|
| 339 | + 'jobs/form/preview' => __DIR__.'/../view/form/preview.phtml', |
|
| 340 | + 'jobs/form/customer-note' => __DIR__.'/../view/form/customer-note.phtml', |
|
| 341 | + 'jobs/partials/channel-list' => __DIR__.'/../view/partials/channel-list.phtml', |
|
| 342 | + 'jobs/assign-user' => __DIR__.'/../view/jobs/manage/assign-user.phtml', |
|
| 343 | + 'jobs/snapshot_or_preview' => __DIR__.'/../view/partials/snapshot_or_preview.phtml', |
|
| 344 | + 'jobs/history' => __DIR__.'/../view/partials/history.phtml', |
|
| 345 | + 'jobs/portalsummary' => __DIR__.'/../view/partials/portalsummary.phtml', |
|
| 346 | + 'content/jobs-publish-on-yawik' => __DIR__.'/../view/modals/yawik.phtml', |
|
| 347 | + 'content/jobs-publish-on-jobsintown' => __DIR__.'/../view/modals/jobsintown.phtml', |
|
| 348 | + 'content/jobs-publish-on-homepage' => __DIR__.'/../view/modals/homepage.phtml', |
|
| 349 | + 'content/jobs-publish-on-fazjob' => __DIR__.'/../view/modals/fazjob.phtml', |
|
| 350 | + 'content/jobs-terms-and-conditions' => __DIR__.'/../view/jobs/index/terms.phtml', |
|
| 351 | + 'mail/job-created' => __DIR__.'/../view/mails/job-created.phtml', |
|
| 352 | + 'mail/job-pending' => __DIR__.'/../view/mails/job-pending.phtml', |
|
| 353 | + 'mail/job-accepted' => __DIR__.'/../view/mails/job-accepted.phtml', |
|
| 354 | + 'mail/job-rejected' => __DIR__.'/../view/mails/job-rejected.phtml', |
|
| 355 | + 'mail/job-created.en' => __DIR__.'/../view/mails/job-created.en.phtml', |
|
| 356 | + 'mail/job-pending.en' => __DIR__.'/../view/mails/job-pending.en.phtml', |
|
| 357 | + 'mail/job-accepted.en' => __DIR__.'/../view/mails/job-accepted.en.phtml', |
|
| 358 | + 'mail/job-rejected.en' => __DIR__.'/../view/mails/job-rejected.en.phtml', |
|
| 359 | + 'jobs/error/no-parent' => __DIR__.'/../view/error/no-parent.phtml', |
|
| 360 | + 'jobs/error/expired' => __DIR__.'/../view/error/expired.phtml', |
|
| 361 | 361 | ], |
| 362 | 362 | |
| 363 | 363 | // Where to look for view templates not mapped above |
| 364 | 364 | 'template_path_stack' => [ |
| 365 | - __DIR__ . '/../view', |
|
| 365 | + __DIR__.'/../view', |
|
| 366 | 366 | ], |
| 367 | 367 | ], |
| 368 | 368 | |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | */ |
| 24 | 24 | class BaseFieldsetOptions extends FieldsetCustomizationOptions |
| 25 | 25 | { |
| 26 | - const TITLE = 'title'; |
|
| 26 | + const TITLE = 'title'; |
|
| 27 | 27 | const LOCATION = 'geoLocation'; |
| 28 | 28 | |
| 29 | 29 | /** |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | * |
| 32 | 32 | * @var array |
| 33 | 33 | */ |
| 34 | - protected $fields=[ |
|
| 34 | + protected $fields = [ |
|
| 35 | 35 | self::TITLE => [ |
| 36 | 36 | 'enabled' => true, |
| 37 | 37 | 'options' => [ |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | * |
| 29 | 29 | * @var array |
| 30 | 30 | */ |
| 31 | - protected $fields=[ |
|
| 31 | + protected $fields = [ |
|
| 32 | 32 | 'q' => [ |
| 33 | 33 | 'enabled' => true |
| 34 | 34 | ], |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | */ |
| 69 | 69 | public function setPerPage($perPage) |
| 70 | 70 | { |
| 71 | - $this->perPage=$perPage; |
|
| 71 | + $this->perPage = $perPage; |
|
| 72 | 72 | return $this; |
| 73 | 73 | } |
| 74 | 74 | } |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | * |
| 82 | 82 | * @var int $publishDuration |
| 83 | 83 | */ |
| 84 | - protected $publishDuration=30; |
|
| 84 | + protected $publishDuration = 30; |
|
| 85 | 85 | |
| 86 | 86 | /** |
| 87 | 87 | * Category for this channel |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | */ |
| 141 | 141 | public function setKey($key) |
| 142 | 142 | { |
| 143 | - $this->key=$key; |
|
| 143 | + $this->key = $key; |
|
| 144 | 144 | return $this; |
| 145 | 145 | } |
| 146 | 146 | |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | */ |
| 163 | 163 | public function setExternalkey($key) |
| 164 | 164 | { |
| 165 | - $this->externalkey=$key; |
|
| 165 | + $this->externalkey = $key; |
|
| 166 | 166 | return $this; |
| 167 | 167 | } |
| 168 | 168 | |
@@ -44,21 +44,21 @@ |
||
| 44 | 44 | * |
| 45 | 45 | * @var string $defaultLogo |
| 46 | 46 | */ |
| 47 | - protected $defaultLogo="modules/Jobs/images/yawik-small.jpg"; |
|
| 47 | + protected $defaultLogo = "modules/Jobs/images/yawik-small.jpg"; |
|
| 48 | 48 | |
| 49 | 49 | /** |
| 50 | 50 | * Maximum size in bytes of a company Logo. Default 200k |
| 51 | 51 | * |
| 52 | 52 | * @var int $companyLogoMaxSize |
| 53 | 53 | */ |
| 54 | - protected $companyLogoMaxSize=200000; |
|
| 54 | + protected $companyLogoMaxSize = 200000; |
|
| 55 | 55 | |
| 56 | 56 | /** |
| 57 | 57 | * Allowed Mime-Types for company Logos |
| 58 | 58 | * |
| 59 | 59 | * @var array |
| 60 | 60 | */ |
| 61 | - protected $companyLogoMimeType=array("image"); |
|
| 61 | + protected $companyLogoMimeType = array("image"); |
|
| 62 | 62 | |
| 63 | 63 | |
| 64 | 64 | /** |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | public function findByAssignedPermissionsResourceId($resourceId) |
| 71 | 71 | { |
| 72 | 72 | $criteria = $this->getIsDeletedCriteria( |
| 73 | - ['permissions.assigned.' . $resourceId => [ '$exists' => true]] |
|
| 73 | + ['permissions.assigned.'.$resourceId => ['$exists' => true]] |
|
| 74 | 74 | ); |
| 75 | 75 | |
| 76 | 76 | return $this->findBy($criteria); |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | $qb = $this->createQueryBuilder(); |
| 137 | 137 | $qb->distinct('organization') |
| 138 | 138 | ->hydrate(true) |
| 139 | - ->field('status.name')->notIn([ StatusInterface::EXPIRED, StatusInterface::INACTIVE ]); |
|
| 139 | + ->field('status.name')->notIn([StatusInterface::EXPIRED, StatusInterface::INACTIVE]); |
|
| 140 | 140 | |
| 141 | 141 | $q = $qb->getQuery(); |
| 142 | 142 | $r = $q->execute(); |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | $qb = $this->dm->createQueryBuilder('Organizations\Entity\Organization'); |
| 146 | 146 | $qb->field('_id')->in($r); |
| 147 | 147 | if ($term) { |
| 148 | - $qb->field('_organizationName')->equals(new \MongoRegex('/' . addslashes($term) . '/i')); |
|
| 148 | + $qb->field('_organizationName')->equals(new \MongoRegex('/'.addslashes($term).'/i')); |
|
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | $q = $qb->getQuery(); |
@@ -202,7 +202,7 @@ discard block |
||
| 202 | 202 | */ |
| 203 | 203 | public function createQueryBuilder($isDeleted = false) |
| 204 | 204 | { |
| 205 | - $qb = parent::createQueryBuilder(); |
|
| 205 | + $qb = parent::createQueryBuilder(); |
|
| 206 | 206 | |
| 207 | 207 | if (null !== $isDeleted) { |
| 208 | 208 | $qb->addAnd( |
@@ -86,10 +86,10 @@ |
||
| 86 | 86 | |
| 87 | 87 | if (isset($params['l'])) { |
| 88 | 88 | $coords = $params['l']->getCoordinates()->getCoordinates(); |
| 89 | - $queryBuilder->field('locations.coordinates')->geoWithinCenter((float) $coords[0], (float) $coords[1], (float) $this->value['d']/100); |
|
| 89 | + $queryBuilder->field('locations.coordinates')->geoWithinCenter((float) $coords[0], (float) $coords[1], (float) $this->value['d'] / 100); |
|
| 90 | 90 | } |
| 91 | 91 | |
| 92 | - if (isset($params['channel']) && !empty($params['channel']) && $params['channel']!="default") { |
|
| 92 | + if (isset($params['channel']) && !empty($params['channel']) && $params['channel'] != "default") { |
|
| 93 | 93 | $queryBuilder->field('portals')->equals($params['channel']); |
| 94 | 94 | } |
| 95 | 95 | |
@@ -67,13 +67,13 @@ |
||
| 67 | 67 | $file = "jobs.categories.$type.php"; |
| 68 | 68 | |
| 69 | 69 | foreach ($this->globalConfigPaths as $path) { |
| 70 | - if (file_exists($path . $file)) { |
|
| 71 | - return include $path . $file; |
|
| 70 | + if (file_exists($path.$file)) { |
|
| 71 | + return include $path.$file; |
|
| 72 | 72 | } |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | - if (file_exists($this->moduleConfigPath . $file)) { |
|
| 76 | - return include $this->moduleConfigPath . $file; |
|
| 75 | + if (file_exists($this->moduleConfigPath.$file)) { |
|
| 76 | + return include $this->moduleConfigPath.$file; |
|
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | return false; |