@@ -49,8 +49,8 @@ |
||
| 49 | 49 | $expectedIdentifiers = array('Jobs', 'Jobs/Events'); |
| 50 | 50 | $eventManager = new EventManager(); |
| 51 | 51 | $services = $this->getMockBuilder('\Laminas\ServiceManager\ServiceManager') |
| 52 | - ->disableOriginalConstructor() |
|
| 53 | - ->getMock(); |
|
| 52 | + ->disableOriginalConstructor() |
|
| 53 | + ->getMock(); |
|
| 54 | 54 | |
| 55 | 55 | $services->expects($this->once())->method('get')->with('EventManager')->willReturn($eventManager); |
| 56 | 56 | |
@@ -57,12 +57,12 @@ |
||
| 57 | 57 | ->willReturn($urlHelper); |
| 58 | 58 | |
| 59 | 59 | $serviceManagerMock = $this->getMockBuilder('\Laminas\ServiceManager\ServiceManager') |
| 60 | - ->disableOriginalConstructor() |
|
| 61 | - ->getMock(); |
|
| 60 | + ->disableOriginalConstructor() |
|
| 61 | + ->getMock(); |
|
| 62 | 62 | |
| 63 | 63 | $serviceManagerMock->expects($this->once())->method('get') |
| 64 | - ->with('ViewHelperManager') |
|
| 65 | - ->willReturn($helpers); |
|
| 64 | + ->with('ViewHelperManager') |
|
| 65 | + ->willReturn($helpers); |
|
| 66 | 66 | |
| 67 | 67 | $service = $target->__invoke($serviceManagerMock, 'irrelevant'); |
| 68 | 68 | |
@@ -24,16 +24,16 @@ |
||
| 24 | 24 | public function testFactory($config) |
| 25 | 25 | { |
| 26 | 26 | $serviceManager = $this->getMockBuilder('\Laminas\ServiceManager\ServiceManager') |
| 27 | - ->disableOriginalConstructor()->getMock(); |
|
| 27 | + ->disableOriginalConstructor()->getMock(); |
|
| 28 | 28 | |
| 29 | 29 | |
| 30 | 30 | |
| 31 | 31 | if (isset($config['core_options'])) { |
| 32 | 32 | $coreOptions = new \Core\Options\ModuleOptions($config['core_options']); |
| 33 | 33 | $serviceManager->expects($this->exactly(2)) |
| 34 | - ->method('get') |
|
| 35 | - ->withConsecutive(array('Config'), array('Core/Options')) |
|
| 36 | - ->will($this->onConsecutiveCalls($config, $coreOptions)); |
|
| 34 | + ->method('get') |
|
| 35 | + ->withConsecutive(array('Config'), array('Core/Options')) |
|
| 36 | + ->will($this->onConsecutiveCalls($config, $coreOptions)); |
|
| 37 | 37 | } else { |
| 38 | 38 | $serviceManager->expects($this->once())->method('get')->with('Config')->willReturn($config); |
| 39 | 39 | } |
@@ -45,17 +45,17 @@ |
||
| 45 | 45 | )); |
| 46 | 46 | |
| 47 | 47 | $services = $this->getMockBuilder('\Laminas\ServiceManager\ServiceManager') |
| 48 | - ->disableOriginalConstructor() |
|
| 49 | - ->getMock(); |
|
| 48 | + ->disableOriginalConstructor() |
|
| 49 | + ->getMock(); |
|
| 50 | 50 | |
| 51 | 51 | $services->expects($this->exactly(3)) |
| 52 | - ->method('get') |
|
| 53 | - ->withConsecutive( |
|
| 54 | - array('Core/MailService'), |
|
| 55 | - array('Jobs/Options'), |
|
| 56 | - array('Core/Options') |
|
| 57 | - ) |
|
| 58 | - ->will($this->onConsecutiveCalls($mailService, $jobsOptions, $coreOptions)); |
|
| 52 | + ->method('get') |
|
| 53 | + ->withConsecutive( |
|
| 54 | + array('Core/MailService'), |
|
| 55 | + array('Jobs/Options'), |
|
| 56 | + array('Core/Options') |
|
| 57 | + ) |
|
| 58 | + ->will($this->onConsecutiveCalls($mailService, $jobsOptions, $coreOptions)); |
|
| 59 | 59 | |
| 60 | 60 | $expectedOptions = array( |
| 61 | 61 | 'siteName' => $coreOptions->getSiteName(), |
@@ -52,10 +52,10 @@ |
||
| 52 | 52 | { |
| 53 | 53 | $select = $this->getMockBuilder('Jobs\Form\MultipostingSelect')->disableOriginalConstructor()->getMock(); |
| 54 | 54 | $select->expects($this->once()) |
| 55 | - ->method('setViewPartial')->with('jobs/form/multiposting-checkboxes'); |
|
| 55 | + ->method('setViewPartial')->with('jobs/form/multiposting-checkboxes'); |
|
| 56 | 56 | |
| 57 | 57 | $select->expects($this->once()) |
| 58 | - ->method('setHeadscripts')->with(array('modules/Jobs/js/form.multiposting-checkboxes.js')); |
|
| 58 | + ->method('setHeadscripts')->with(array('modules/Jobs/js/form.multiposting-checkboxes.js')); |
|
| 59 | 59 | |
| 60 | 60 | $factory = $this->getMockBuilder('\Laminas\ServiceManager\FactoryInterface') |
| 61 | 61 | ->setMethods(array('__invoke')) |
@@ -78,21 +78,21 @@ |
||
| 78 | 78 | $this->user = $user; |
| 79 | 79 | |
| 80 | 80 | $auth = $this->getMockBuilder('Auth\AuthenticationService') |
| 81 | - ->disableOriginalConstructor() |
|
| 82 | - ->getMock(); |
|
| 81 | + ->disableOriginalConstructor() |
|
| 82 | + ->getMock(); |
|
| 83 | 83 | |
| 84 | 84 | $auth->expects($this->once()) |
| 85 | - ->method('getUser') |
|
| 86 | - ->willReturn($user); |
|
| 85 | + ->method('getUser') |
|
| 86 | + ->willReturn($user); |
|
| 87 | 87 | |
| 88 | 88 | $services = $this->getMockBuilder('\Laminas\ServiceManager\ServiceManager') |
| 89 | - ->disableOriginalConstructor() |
|
| 90 | - ->getMock(); |
|
| 89 | + ->disableOriginalConstructor() |
|
| 90 | + ->getMock(); |
|
| 91 | 91 | |
| 92 | 92 | $services->expects($this->once()) |
| 93 | - ->method('get') |
|
| 94 | - ->with('AuthenticationService') |
|
| 95 | - ->willReturn($auth); |
|
| 93 | + ->method('get') |
|
| 94 | + ->with('AuthenticationService') |
|
| 95 | + ->willReturn($auth); |
|
| 96 | 96 | |
| 97 | 97 | $this->services = $services; |
| 98 | 98 | } |
@@ -43,8 +43,8 @@ |
||
| 43 | 43 | $provider=new ProviderOptions(); |
| 44 | 44 | |
| 45 | 45 | $serviceManagerMock = $this->getMockBuilder('\Laminas\ServiceManager\ServiceManager') |
| 46 | - ->disableOriginalConstructor() |
|
| 47 | - ->getMock(); |
|
| 46 | + ->disableOriginalConstructor() |
|
| 47 | + ->getMock(); |
|
| 48 | 48 | |
| 49 | 49 | |
| 50 | 50 | $serviceManagerMock |
@@ -33,44 +33,44 @@ |
||
| 33 | 33 | protected function addElements() |
| 34 | 34 | { |
| 35 | 35 | $this->add( |
| 36 | - [ |
|
| 37 | - 'name' => 'l', |
|
| 38 | - 'type' => 'LocationSelect', |
|
| 39 | - 'options' => [ |
|
| 40 | - 'label' => /*@translate*/ 'Location', |
|
| 41 | - 'span' => 3, |
|
| 42 | - 'location_entity' => Location::class, |
|
| 43 | - ], |
|
| 44 | - 'attributes' => [ |
|
| 45 | - 'data-width' => '100%', |
|
| 46 | - ], |
|
| 47 | - ] |
|
| 36 | + [ |
|
| 37 | + 'name' => 'l', |
|
| 38 | + 'type' => 'LocationSelect', |
|
| 39 | + 'options' => [ |
|
| 40 | + 'label' => /*@translate*/ 'Location', |
|
| 41 | + 'span' => 3, |
|
| 42 | + 'location_entity' => Location::class, |
|
| 43 | + ], |
|
| 44 | + 'attributes' => [ |
|
| 45 | + 'data-width' => '100%', |
|
| 46 | + ], |
|
| 47 | + ] |
|
| 48 | 48 | ); |
| 49 | 49 | |
| 50 | 50 | $this->add( |
| 51 | - [ |
|
| 52 | - 'name' => 'd', |
|
| 53 | - 'type' => 'Core\Form\Element\Select', //Laminas\Form\Element\Select |
|
| 54 | - 'options' => [ |
|
| 55 | - 'label' => /*@translate*/ 'Distance', |
|
| 56 | - 'value_options' => [ |
|
| 57 | - '5' => '5 km', |
|
| 58 | - '10' => '10 km', |
|
| 59 | - '20' => '20 km', |
|
| 60 | - '50' => '50 km', |
|
| 61 | - '100' => '100 km' |
|
| 62 | - ], |
|
| 63 | - 'span' => 4, |
|
| 51 | + [ |
|
| 52 | + 'name' => 'd', |
|
| 53 | + 'type' => 'Core\Form\Element\Select', //Laminas\Form\Element\Select |
|
| 54 | + 'options' => [ |
|
| 55 | + 'label' => /*@translate*/ 'Distance', |
|
| 56 | + 'value_options' => [ |
|
| 57 | + '5' => '5 km', |
|
| 58 | + '10' => '10 km', |
|
| 59 | + '20' => '20 km', |
|
| 60 | + '50' => '50 km', |
|
| 61 | + '100' => '100 km' |
|
| 62 | + ], |
|
| 63 | + 'span' => 4, |
|
| 64 | 64 | |
| 65 | - ], |
|
| 66 | - 'attributes' => [ |
|
| 67 | - 'value' => '10', // default distance |
|
| 68 | - 'data-searchbox' => -1, // hide the search box |
|
| 69 | - 'data-allowclear' => 'false', // allow to clear a selected value |
|
| 70 | - 'data-placeholder' => /*@translate*/ 'Distance', |
|
| 71 | - 'data-width' => '100%', |
|
| 72 | - ] |
|
| 73 | - ] |
|
| 65 | + ], |
|
| 66 | + 'attributes' => [ |
|
| 67 | + 'value' => '10', // default distance |
|
| 68 | + 'data-searchbox' => -1, // hide the search box |
|
| 69 | + 'data-allowclear' => 'false', // allow to clear a selected value |
|
| 70 | + 'data-placeholder' => /*@translate*/ 'Distance', |
|
| 71 | + 'data-width' => '100%', |
|
| 72 | + ] |
|
| 73 | + ] |
|
| 74 | 74 | ); |
| 75 | 75 | } |
| 76 | 76 | } |
@@ -78,61 +78,61 @@ |
||
| 78 | 78 | ] |
| 79 | 79 | ], |
| 80 | 80 | [ |
| 81 | - 'type' => 'Core/Datepicker', |
|
| 82 | - 'name' => 'endDate', |
|
| 83 | - 'options' => [ |
|
| 84 | - 'label' => 'End date' |
|
| 85 | - ], |
|
| 81 | + 'type' => 'Core/Datepicker', |
|
| 82 | + 'name' => 'endDate', |
|
| 83 | + 'options' => [ |
|
| 84 | + 'label' => 'End date' |
|
| 85 | + ], |
|
| 86 | 86 | ], |
| 87 | - [ |
|
| 88 | - 'type' => 'checkbox', |
|
| 89 | - 'name' => 'currentIndicator', |
|
| 90 | - 'options' => [ |
|
| 91 | - 'label' => 'ongoing' |
|
| 92 | - ] |
|
| 93 | - ], |
|
| 94 | - [ |
|
| 95 | - 'name' => 'competencyName', |
|
| 96 | - 'options' => [ |
|
| 97 | - 'label' => 'Degree'], |
|
| 98 | - 'attributes' => [ |
|
| 99 | - 'title' => 'please enter the name of your qualification' |
|
| 100 | - ], |
|
| 101 | - ], |
|
| 102 | - [ |
|
| 103 | - 'name' => 'organizationName', |
|
| 104 | - 'options' => [ |
|
| 105 | - 'label' => 'Organization Name'], |
|
| 106 | - 'attributes' => [ |
|
| 107 | - 'title' => 'please enter the name of the university or school' |
|
| 108 | - ], |
|
| 109 | - ], |
|
| 87 | + [ |
|
| 88 | + 'type' => 'checkbox', |
|
| 89 | + 'name' => 'currentIndicator', |
|
| 90 | + 'options' => [ |
|
| 91 | + 'label' => 'ongoing' |
|
| 92 | + ] |
|
| 93 | + ], |
|
| 94 | + [ |
|
| 95 | + 'name' => 'competencyName', |
|
| 96 | + 'options' => [ |
|
| 97 | + 'label' => 'Degree'], |
|
| 98 | + 'attributes' => [ |
|
| 99 | + 'title' => 'please enter the name of your qualification' |
|
| 100 | + ], |
|
| 101 | + ], |
|
| 102 | + [ |
|
| 103 | + 'name' => 'organizationName', |
|
| 104 | + 'options' => [ |
|
| 105 | + 'label' => 'Organization Name'], |
|
| 106 | + 'attributes' => [ |
|
| 107 | + 'title' => 'please enter the name of the university or school' |
|
| 108 | + ], |
|
| 109 | + ], |
|
| 110 | 110 | [ |
| 111 | - 'name' => 'country', |
|
| 112 | - 'options' => [ |
|
| 113 | - 'label' => 'Country'], |
|
| 114 | - 'attributes' => [ |
|
| 115 | - 'title' => /*@translate */ 'please select the country' |
|
| 116 | - ], |
|
| 117 | - ], |
|
| 118 | - [ |
|
| 119 | - 'name' => 'city', |
|
| 120 | - 'options' => [ |
|
| 121 | - 'label' => 'City'], |
|
| 122 | - 'attributes' => [ |
|
| 123 | - 'title' => 'please enter the name of the city' |
|
| 124 | - ], |
|
| 125 | - ], |
|
| 126 | - [ |
|
| 127 | - 'name' => 'description', |
|
| 128 | - 'type' => 'Laminas\Form\Element\Textarea', |
|
| 129 | - 'options' => [ |
|
| 130 | - 'label' => 'Description', |
|
| 131 | - ], |
|
| 132 | - 'attributes' => [ |
|
| 133 | - 'title' => 'please enter a description', |
|
| 134 | - ], |
|
| 135 | - ], |
|
| 111 | + 'name' => 'country', |
|
| 112 | + 'options' => [ |
|
| 113 | + 'label' => 'Country'], |
|
| 114 | + 'attributes' => [ |
|
| 115 | + 'title' => /*@translate */ 'please select the country' |
|
| 116 | + ], |
|
| 117 | + ], |
|
| 118 | + [ |
|
| 119 | + 'name' => 'city', |
|
| 120 | + 'options' => [ |
|
| 121 | + 'label' => 'City'], |
|
| 122 | + 'attributes' => [ |
|
| 123 | + 'title' => 'please enter the name of the city' |
|
| 124 | + ], |
|
| 125 | + ], |
|
| 126 | + [ |
|
| 127 | + 'name' => 'description', |
|
| 128 | + 'type' => 'Laminas\Form\Element\Textarea', |
|
| 129 | + 'options' => [ |
|
| 130 | + 'label' => 'Description', |
|
| 131 | + ], |
|
| 132 | + 'attributes' => [ |
|
| 133 | + 'title' => 'please enter a description', |
|
| 134 | + ], |
|
| 135 | + ], |
|
| 136 | 136 | ]; |
| 137 | 137 | |
| 138 | 138 | $addArgValidator = function ($arg) use ($add) { |