@@ -40,10 +40,10 @@ discard block |
||
40 | 40 | */ |
41 | 41 | protected $acl; |
42 | 42 | |
43 | - public function __construct(RepositoryService $repositoryService,AuthenticationService $auth, Acl $acl) { |
|
44 | - $this->repositoryService=$repositoryService; |
|
45 | - $this->auth=$auth; |
|
46 | - $this->acl=$acl; |
|
43 | + public function __construct(RepositoryService $repositoryService, AuthenticationService $auth, Acl $acl) { |
|
44 | + $this->repositoryService = $repositoryService; |
|
45 | + $this->auth = $auth; |
|
46 | + $this->acl = $acl; |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | public function __invoke() |
@@ -59,9 +59,9 @@ discard block |
||
59 | 59 | * @throws UnauthorizedAccessException |
60 | 60 | * @throws \Doctrine\ODM\MongoDB\LockException |
61 | 61 | */ |
62 | - public function process(Params $params,$allowDraft = true) |
|
62 | + public function process(Params $params, $allowDraft = true) |
|
63 | 63 | { |
64 | - $repositories = $this->repositoryService; |
|
64 | + $repositories = $this->repositoryService; |
|
65 | 65 | /* @var \Organizations\Repository\Organization $organizationRepository */ |
66 | 66 | $organizationRepository = $this->repositoryService->get('Organizations/Organization'); |
67 | 67 | |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | $user = $this->auth->getUser(); /* @var $user \Auth\Entity\UserInterface */ |
71 | 71 | |
72 | 72 | /* @var $organizationId string */ |
73 | - $organizationId = empty($idFromRoute)?$idFromSubForm:$idFromRoute; |
|
73 | + $organizationId = empty($idFromRoute) ? $idFromSubForm : $idFromRoute; |
|
74 | 74 | |
75 | 75 | $editOwnOrganization = '__my__' === $organizationId; |
76 | 76 | |
@@ -105,9 +105,9 @@ discard block |
||
105 | 105 | return $organization; |
106 | 106 | } |
107 | 107 | |
108 | - $organization = $organizationRepository->find($organizationId); |
|
108 | + $organization = $organizationRepository->find($organizationId); |
|
109 | 109 | if (!$organization) { |
110 | - throw new \RuntimeException('No Organization found with id "' . $organizationId . '"'); |
|
110 | + throw new \RuntimeException('No Organization found with id "'.$organizationId.'"'); |
|
111 | 111 | } |
112 | 112 | return $organization; |
113 | 113 | } |
@@ -43,7 +43,7 @@ |
||
43 | 43 | $setterMethods = $object->getSetters(); |
44 | 44 | } |
45 | 45 | foreach ($data as $key => $value) { |
46 | - $setter = 'set' . ucfirst($key); |
|
46 | + $setter = 'set'.ucfirst($key); |
|
47 | 47 | if (in_array($setter, $setterMethods)) { |
48 | 48 | $object->$setter($value); |
49 | 49 | } else { |
@@ -149,21 +149,21 @@ discard block |
||
149 | 149 | } |
150 | 150 | |
151 | 151 | if (preg_match('~^is(View|Change|None|All)Granted$~', $method, $match)) { |
152 | - $permission = constant('self::PERMISSION_' . strtoupper($match[1])); |
|
152 | + $permission = constant('self::PERMISSION_'.strtoupper($match[1])); |
|
153 | 153 | return $this->isGranted($params[0], $permission); |
154 | 154 | } |
155 | 155 | |
156 | 156 | if (preg_match('~^grant(View|Change|None|All)$~', $method, $match)) { |
157 | - $permission = constant('self::PERMISSION_' . strtoupper($match[1])); |
|
157 | + $permission = constant('self::PERMISSION_'.strtoupper($match[1])); |
|
158 | 158 | return $this->grant($params[0], $permission); |
159 | 159 | } |
160 | 160 | |
161 | 161 | if (preg_match('~^revoke(View|Change|None|All)$~', $method, $match)) { |
162 | - $permission = constant('self::PERMISSION_' . strtoupper($match[1])); |
|
162 | + $permission = constant('self::PERMISSION_'.strtoupper($match[1])); |
|
163 | 163 | return $this->revoke($params[0], $permission); |
164 | 164 | } |
165 | 165 | |
166 | - throw new \BadMethodCallException('Unknown method "' . $method . '"'); |
|
166 | + throw new \BadMethodCallException('Unknown method "'.$method.'"'); |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | /** |
@@ -311,7 +311,7 @@ discard block |
||
311 | 311 | if ($build) { |
312 | 312 | $this->build(); |
313 | 313 | } |
314 | - $this->hasChanged= true; |
|
314 | + $this->hasChanged = true; |
|
315 | 315 | |
316 | 316 | // restore orginial permissions type |
317 | 317 | $this->type = $oldType; |
@@ -444,10 +444,10 @@ discard block |
||
444 | 444 | } |
445 | 445 | |
446 | 446 | if ($resource instanceof UserInterface) { |
447 | - return 'user:' . $resource->getId(); |
|
447 | + return 'user:'.$resource->getId(); |
|
448 | 448 | } |
449 | 449 | |
450 | - return 'user:' . $resource; |
|
450 | + return 'user:'.$resource; |
|
451 | 451 | } |
452 | 452 | |
453 | 453 | /** |
@@ -467,7 +467,7 @@ discard block |
||
467 | 467 | ); |
468 | 468 | if (!in_array($permission, $perms)) { |
469 | 469 | throw new \InvalidArgumentException( |
470 | - 'Invalid permission. Must be one of ' . implode(', ', $perms) |
|
470 | + 'Invalid permission. Must be one of '.implode(', ', $perms) |
|
471 | 471 | ); |
472 | 472 | } |
473 | 473 | } |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | return $this->$method($value); |
50 | 50 | } |
51 | 51 | |
52 | - throw new OutOfBoundsException("'$property' is not a valid property of '" . get_class($this). "'"); |
|
52 | + throw new OutOfBoundsException("'$property' is not a valid property of '".get_class($this)."'"); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | /** |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | if (method_exists($this, $method)) { |
77 | 77 | return $this->$method(); |
78 | 78 | } |
79 | - throw new OutOfBoundsException("'$property' is not a valid property of '" . get_class($this) . "'"); |
|
79 | + throw new OutOfBoundsException("'$property' is not a valid property of '".get_class($this)."'"); |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
@@ -66,13 +66,13 @@ |
||
66 | 66 | } |
67 | 67 | |
68 | 68 | $output = '<div class="br-widget br-readonly ' |
69 | - . ('compact' == $mode ? ' br-compact' : '' ) |
|
70 | - . '" title="' . $this->getView()->translate(self::$ratingValueMap[$rating]) . '">'; |
|
71 | - for ($i=1; $i<6; $i++) { |
|
69 | + . ('compact' == $mode ? ' br-compact' : '') |
|
70 | + . '" title="'.$this->getView()->translate(self::$ratingValueMap[$rating]).'">'; |
|
71 | + for ($i = 1; $i < 6; $i++) { |
|
72 | 72 | $class = $i <= $rating ? 'br-selected' : ''; |
73 | 73 | $class .= $i == $rating ? ' br-current' : ''; |
74 | 74 | |
75 | - $output .= '<a class="' . $class . '"></a>'; |
|
75 | + $output .= '<a class="'.$class.'"></a>'; |
|
76 | 76 | } |
77 | 77 | $output .= '</div>'; |
78 | 78 |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | : ''; |
59 | 59 | |
60 | 60 | if (false !== strpos($urlOrEmail, '@')) { |
61 | - $urlOrEmail = 'mailto:' . $urlOrEmail; |
|
61 | + $urlOrEmail = 'mailto:'.$urlOrEmail; |
|
62 | 62 | } |
63 | 63 | |
64 | 64 | return sprintf('<a %s href="%s">%s</a>', $attributesStr, $urlOrEmail, $label); |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | $attr = array(); |
74 | 74 | |
75 | 75 | foreach ($attributes as $name => $value) { |
76 | - $attr[] = $escape($name) . '="' . $escapeAttr($value) . '"'; |
|
76 | + $attr[] = $escape($name).'="'.$escapeAttr($value).'"'; |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | return implode(' ', $attr); |
@@ -57,7 +57,7 @@ |
||
57 | 57 | protected function checkObjectType($object) |
58 | 58 | { |
59 | 59 | if (!$object instanceof $this->objectType) { |
60 | - throw new \InvalidArgumentException('Wrapped entity must be of type ' . $this->objectType); |
|
60 | + throw new \InvalidArgumentException('Wrapped entity must be of type '.$this->objectType); |
|
61 | 61 | } |
62 | 62 | } |
63 | 63 | } |
@@ -50,10 +50,10 @@ discard block |
||
50 | 50 | $renderer = $this->getView(); |
51 | 51 | $basepath = $renderer->plugin('basepath'); |
52 | 52 | $renderer->headscript() |
53 | - ->appendFile($basepath('js/jquery-file-upload/vendor/jquery.ui.widget.js')) |
|
54 | - ->appendFile($basepath('js/jquery-file-upload/jquery.iframe-transport.js')) |
|
55 | - ->appendFile($basepath('js/jquery-file-upload/jquery.fileupload.js')) |
|
56 | - ->appendFile($basepath($this->scriptFile)); |
|
53 | + ->appendFile($basepath('js/jquery-file-upload/vendor/jquery.ui.widget.js')) |
|
54 | + ->appendFile($basepath('js/jquery-file-upload/jquery.iframe-transport.js')) |
|
55 | + ->appendFile($basepath('js/jquery-file-upload/jquery.fileupload.js')) |
|
56 | + ->appendFile($basepath($this->scriptFile)); |
|
57 | 57 | |
58 | 58 | $markup = $this->renderMarkup($element); |
59 | 59 | // $fileInput = parent::render($element); |
@@ -126,11 +126,11 @@ discard block |
||
126 | 126 | |
127 | 127 | return str_replace( |
128 | 128 | array('#abort', |
129 | - '__file-uri__', |
|
130 | - '__file-name__', |
|
131 | - '__file-size__', |
|
132 | - 'fu-working', |
|
133 | - 'fa-file-o' |
|
129 | + '__file-uri__', |
|
130 | + '__file-name__', |
|
131 | + '__file-size__', |
|
132 | + 'fu-working', |
|
133 | + 'fa-file-o' |
|
134 | 134 | ), |
135 | 135 | array("$uri?do=delete", $uri, $name, $size, '', $icon), |
136 | 136 | $template |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | '<div class="fu-nonempty-notice"' . ('' == trim($preview) ? ' style="display:none;"' : '') . '>' |
159 | 159 | . $notice . '</div>'; |
160 | 160 | $emptynotice = '<div class="fu-empty-notice"' |
161 | - . ('' == trim($preview) ? '' : ' style="display: none;"') . '> |
|
161 | + . ('' == trim($preview) ? '' : ' style="display: none;"') . '> |
|
162 | 162 | <div class="pull-left"> |
163 | 163 | <span class="yk-icon fa-files-o fa-5x"></span> |
164 | 164 | </div>' . $notice . ' |
@@ -103,12 +103,12 @@ discard block |
||
103 | 103 | </a> |
104 | 104 | <div class="fu-errors input-error"> |
105 | 105 | <ul class="errors"> |
106 | - <li class="fu-error-size">' . $translator->translate('The file is too big', $textDomain) . '</li> |
|
107 | - <li class="fu-error-type">' . $translator->translate('The file type is not supported', $textDomain) . '</li> |
|
106 | + <li class="fu-error-size">' . $translator->translate('The file is too big', $textDomain).'</li> |
|
107 | + <li class="fu-error-type">' . $translator->translate('The file type is not supported', $textDomain).'</li> |
|
108 | 108 | <li class="fu-error-count">' . sprintf( |
109 | 109 | $translator->translate('You may only upload %d files', $textDomain), |
110 | 110 | $element->getAttribute('data-maxfilecount') |
111 | -) . '</li><li class="fu-error-general">' . $translator->translate('An unknown error occured.') . '</li> |
|
111 | +).'</li><li class="fu-error-general">'.$translator->translate('An unknown error occured.').'</li> |
|
112 | 112 | </ul> |
113 | 113 | </div> |
114 | 114 | </li>'; |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | /* @var $basepath \Zend\View\Helper\BasePath */ |
117 | 117 | $renderer = $this->getView(); |
118 | 118 | $basepath = $renderer->plugin('basepath'); |
119 | - $createFileDisplay = function ($file) use ($template, $basepath) { |
|
119 | + $createFileDisplay = function($file) use ($template, $basepath) { |
|
120 | 120 | /* @var $file \Core\Entity\FileInterface */ |
121 | 121 | $uri = $basepath($file->getUri()); |
122 | 122 | $name = $file->getName(); |
@@ -153,15 +153,15 @@ discard block |
||
153 | 153 | } |
154 | 154 | |
155 | 155 | $notice = |
156 | - '<small>' . $translator->translate('Click here to add files or use drag and drop.') . '</small>'; |
|
156 | + '<small>'.$translator->translate('Click here to add files or use drag and drop.').'</small>'; |
|
157 | 157 | $nonemptynotice = |
158 | - '<div class="fu-nonempty-notice"' . ('' == trim($preview) ? ' style="display:none;"' : '') . '>' |
|
159 | - . $notice . '</div>'; |
|
158 | + '<div class="fu-nonempty-notice"'.('' == trim($preview) ? ' style="display:none;"' : '').'>' |
|
159 | + . $notice.'</div>'; |
|
160 | 160 | $emptynotice = '<div class="fu-empty-notice"' |
161 | - . ('' == trim($preview) ? '' : ' style="display: none;"') . '> |
|
161 | + . ('' == trim($preview) ? '' : ' style="display: none;"').'> |
|
162 | 162 | <div class="pull-left"> |
163 | 163 | <span class="yk-icon fa-files-o fa-5x"></span> |
164 | - </div>' . $notice . ' |
|
164 | + </div>' . $notice.' |
|
165 | 165 | </div>'; |
166 | 166 | |
167 | 167 | $markup = ' |
@@ -39,11 +39,11 @@ |
||
39 | 39 | $element->setLabel(''); |
40 | 40 | $element->setAttribute('placeholder', $label); |
41 | 41 | } |
42 | - $formContent .= $this->getView()->formRow($element, null, null, Form::LAYOUT_BARE) . ' '; |
|
42 | + $formContent .= $this->getView()->formRow($element, null, null, Form::LAYOUT_BARE).' '; |
|
43 | 43 | } |
44 | 44 | } |
45 | 45 | |
46 | 46 | |
47 | - return $this->openTag($form) . $formContent . $this->closeTag(); |
|
47 | + return $this->openTag($form).$formContent.$this->closeTag(); |
|
48 | 48 | } |
49 | 49 | } |