@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | $this->userRepo |
| 44 | 44 | ->method('findByUids') |
| 45 | 45 | ->with($this->anything()) |
| 46 | - ->will($this->returnCallback(function (array $uids) /*use ($user)*/ { |
|
| 46 | + ->will($this->returnCallback(function(array $uids) /*use ($user)*/ { |
|
| 47 | 47 | $groups = [PermissionApi::UNREGISTERED_USER_GROUP => []]; |
| 48 | 48 | if (in_array(1, $uids)) { // guest |
| 49 | 49 | $groups = [1 => []]; // gid => $group |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | $this->session |
| 119 | 119 | ->method('get') |
| 120 | 120 | ->with($this->equalTo('uid')) |
| 121 | - ->will($this->returnCallback(function () use ($uid) { |
|
| 121 | + ->will($this->returnCallback(function() use ($uid) { |
|
| 122 | 122 | return isset($uid) ? $uid : false; // when no uid is available, Zikula_Session::get() returns `false` |
| 123 | 123 | })); |
| 124 | 124 | $api = new PermissionApi($this->permRepo, $this->userRepo, $this->session, $this->translator); |
@@ -45,9 +45,11 @@ |
||
| 45 | 45 | ->with($this->anything()) |
| 46 | 46 | ->will($this->returnCallback(function (array $uids) /*use ($user)*/ { |
| 47 | 47 | $groups = [PermissionApi::UNREGISTERED_USER_GROUP => []]; |
| 48 | - if (in_array(1, $uids)) { // guest |
|
| 48 | + if (in_array(1, $uids)) { |
|
| 49 | +// guest |
|
| 49 | 50 | $groups = [1 => []]; // gid => $group |
| 50 | - } elseif (in_array(2, $uids)) { // admin |
|
| 51 | + } elseif (in_array(2, $uids)) { |
|
| 52 | +// admin |
|
| 51 | 53 | $groups = [1 => [], 2 => []]; // gid => $group |
| 52 | 54 | } |
| 53 | 55 | $this->user |
@@ -47,7 +47,7 @@ |
||
| 47 | 47 | } |
| 48 | 48 | if (isset($component)) { |
| 49 | 49 | $qb->andWhere("p.component LIKE :permgrpparts") |
| 50 | - ->setParameter('permgrpparts', $component.'%'); |
|
| 50 | + ->setParameter('permgrpparts', $component . '%'); |
|
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | return $qb->getQuery()->getResult(); |
@@ -63,7 +63,7 @@ |
||
| 63 | 63 | $templateParameters['lockadmin'] = $this->getVar('lockadmin', 1) ? 1 : 0; |
| 64 | 64 | $templateParameters['adminId'] = $this->getVar('adminid', 1); |
| 65 | 65 | $templateParameters['schema'] = $this->get('zikula_permissions_module.helper.schema_helper')->getAllSchema(); |
| 66 | - $templateParameters['enableFilter'] = (bool) $this->getVar('filter', 1); |
|
| 66 | + $templateParameters['enableFilter'] = (bool)$this->getVar('filter', 1); |
|
| 67 | 67 | |
| 68 | 68 | return $templateParameters; |
| 69 | 69 | } |
@@ -135,7 +135,7 @@ |
||
| 135 | 135 | $factory = new RandomLibFactory(); |
| 136 | 136 | $generator = $factory->getMediumStrengthGenerator(); |
| 137 | 137 | $chars = str_replace($saltDelimiter, '', $this->randomStringCharacters); |
| 138 | - $saltStr = $generator->generateString($saltLength, $chars); |
|
| 138 | + $saltStr = $generator->generateString($saltLength, $chars); |
|
| 139 | 139 | |
| 140 | 140 | return $this->buildSaltedHash($unhashedData, $hashMethodName, $saltStr, $hashMethodNameToCode, $saltDelimiter); |
| 141 | 141 | } |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | $this->entityManager->flush(); |
| 121 | 121 | |
| 122 | 122 | $collapseable = $this->getVar('collapseable'); |
| 123 | - $this->setVar('collapseable', (bool) $collapseable); |
|
| 123 | + $this->setVar('collapseable', (bool)$collapseable); |
|
| 124 | 124 | |
| 125 | 125 | case '3.9.2': |
| 126 | 126 | // convert Text and Html block types so properties is proper array |
@@ -139,10 +139,10 @@ discard block |
||
| 139 | 139 | $searchBlocks = $this->entityManager->getRepository('ZikulaBlocksModule:BlockEntity')->findBy(['blocktype' => 'Search']); |
| 140 | 140 | foreach ($searchBlocks as $searchBlock) { |
| 141 | 141 | $properties = $searchBlock->getProperties(); |
| 142 | - $properties['displaySearchBtn'] = (bool) $properties['displaySearchBtn']; |
|
| 142 | + $properties['displaySearchBtn'] = (bool)$properties['displaySearchBtn']; |
|
| 143 | 143 | if (isset($properties['active'])) { |
| 144 | 144 | foreach ($properties['active'] as $module => $active) { |
| 145 | - $properties['active'][$module] = (bool) $active; |
|
| 145 | + $properties['active'][$module] = (bool)$active; |
|
| 146 | 146 | } |
| 147 | 147 | } |
| 148 | 148 | $searchBlock->setProperties($properties); |
@@ -32,10 +32,10 @@ |
||
| 32 | 32 | ; |
| 33 | 33 | $builder->get('content') |
| 34 | 34 | ->addModelTransformer(new CallbackTransformer( |
| 35 | - function ($originalDescription) { |
|
| 35 | + function($originalDescription) { |
|
| 36 | 36 | return $originalDescription; |
| 37 | 37 | }, |
| 38 | - function ($submittedDescription) { |
|
| 38 | + function($submittedDescription) { |
|
| 39 | 39 | // remove all HTML tags |
| 40 | 40 | return strip_tags($submittedDescription); |
| 41 | 41 | } |
@@ -85,7 +85,7 @@ |
||
| 85 | 85 | */ |
| 86 | 86 | public function deleteAction(Request $request, BlockPositionEntity $positionEntity) |
| 87 | 87 | { |
| 88 | - if (!$this->hasPermission('ZikulaBlocksModule::position', $positionEntity->getName() .'::'. $positionEntity->getPid(), ACCESS_DELETE)) { |
|
| 88 | + if (!$this->hasPermission('ZikulaBlocksModule::position', $positionEntity->getName() . '::' . $positionEntity->getPid(), ACCESS_DELETE)) { |
|
| 89 | 89 | throw new AccessDeniedException(); |
| 90 | 90 | } |
| 91 | 91 | |
@@ -82,7 +82,7 @@ |
||
| 82 | 82 | $blockClassName = preg_match('/.*Block$/', $blockClassName) ? $blockClassName : $blockClassName . 'Block'; |
| 83 | 83 | } catch (\Exception $e) { |
| 84 | 84 | $moduleBundle = null; |
| 85 | - $blockClassName = '\\' . ucwords($moduleName).'\\'.'Block\\'.ucwords($blockEntity->getBkey()); |
|
| 85 | + $blockClassName = '\\' . ucwords($moduleName) . '\\' . 'Block\\' . ucwords($blockEntity->getBkey()); |
|
| 86 | 86 | $blockClassName = preg_match('/.*Block$/', $blockClassName) ? $blockClassName : $blockClassName . 'Block'; |
| 87 | 87 | $blockClassNameOld = '\\' . ucwords($moduleName) . '_' . 'Block_' . ucwords($blockEntity->getBkey()); |
| 88 | 88 | $blockClassName = class_exists($blockClassName) ? $blockClassName : $blockClassNameOld; |
@@ -104,7 +104,7 @@ |
||
| 104 | 104 | || (self::STRATEGY_PREFIX_EXCEPT_DEFAULT === $this->strategy && $this->defaultLocale !== $locale)) { |
| 105 | 105 | $i18nPattern = '/' . $locale . $i18nPattern; |
| 106 | 106 | if (null !== $route->getOption('i18n_prefix')) { |
| 107 | - $i18nPattern = $route->getOption('i18n_prefix').$i18nPattern; |
|
| 107 | + $i18nPattern = $route->getOption('i18n_prefix') . $i18nPattern; |
|
| 108 | 108 | } |
| 109 | 109 | } |
| 110 | 110 | |