@@ -70,12 +70,12 @@ discard block |
||
70 | 70 | return; |
71 | 71 | } |
72 | 72 | |
73 | - if(isset($post['install']) and $post['install']=='true') { |
|
73 | + if (isset($post['install']) and $post['install'] == 'true') { |
|
74 | 74 | // We have to launch the installation process : |
75 | 75 | $e = $this->setupHelper->install($post); |
76 | 76 | $errors = ['errors' => $e]; |
77 | 77 | |
78 | - if(count($e) > 0) { |
|
78 | + if (count($e) > 0) { |
|
79 | 79 | $options = array_merge($opts, $post, $errors); |
80 | 80 | $this->display($options); |
81 | 81 | } else { |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | } |
110 | 110 | |
111 | 111 | private function finishSetup(bool $installRecommended) { |
112 | - if( file_exists( $this->autoConfigFile )) { |
|
112 | + if (file_exists($this->autoConfigFile)) { |
|
113 | 113 | unlink($this->autoConfigFile); |
114 | 114 | } |
115 | 115 | \OC::$server->getIntegrityCodeChecker()->runInstanceVerification(); |
@@ -123,18 +123,18 @@ discard block |
||
123 | 123 | if ($installRecommended) { |
124 | 124 | $urlGenerator = \OC::$server->getURLGenerator(); |
125 | 125 | $location = $urlGenerator->getAbsoluteURL('index.php/core/apps/recommended'); |
126 | - header('Location: ' . $location); |
|
126 | + header('Location: '.$location); |
|
127 | 127 | exit(); |
128 | 128 | } |
129 | 129 | \OC_Util::redirectToDefaultPage(); |
130 | 130 | } |
131 | 131 | |
132 | 132 | public function loadAutoConfig($post) { |
133 | - if( file_exists($this->autoConfigFile)) { |
|
133 | + if (file_exists($this->autoConfigFile)) { |
|
134 | 134 | \OCP\Util::writeLog('core', 'Autoconfig file found, setting up Nextcloud…', ILogger::INFO); |
135 | 135 | $AUTOCONFIG = []; |
136 | 136 | include $this->autoConfigFile; |
137 | - $post = array_merge ($post, $AUTOCONFIG); |
|
137 | + $post = array_merge($post, $AUTOCONFIG); |
|
138 | 138 | } |
139 | 139 | |
140 | 140 | $dbIsSet = isset($post['dbtype']); |
@@ -9,12 +9,12 @@ discard block |
||
9 | 9 | <input type='hidden' id='hasOracle' value='<?php p($_['hasOracle']) ?>'> |
10 | 10 | <form action="index.php" method="post"> |
11 | 11 | <input type="hidden" name="install" value="true"> |
12 | - <?php if(count($_['errors']) > 0): ?> |
|
12 | + <?php if (count($_['errors']) > 0): ?> |
|
13 | 13 | <fieldset class="warning"> |
14 | - <legend><strong><?php p($l->t('Error'));?></strong></legend> |
|
15 | - <?php foreach($_['errors'] as $err): ?> |
|
14 | + <legend><strong><?php p($l->t('Error')); ?></strong></legend> |
|
15 | + <?php foreach ($_['errors'] as $err): ?> |
|
16 | 16 | <p> |
17 | - <?php if(is_array($err)):?> |
|
17 | + <?php if (is_array($err)):?> |
|
18 | 18 | <?php p($err['error']); ?> |
19 | 19 | <span class='hint'><?php p($err['hint']); ?></span> |
20 | 20 | <?php else: ?> |
@@ -24,10 +24,10 @@ discard block |
||
24 | 24 | <?php endforeach; ?> |
25 | 25 | </fieldset> |
26 | 26 | <?php endif; ?> |
27 | - <?php if(!$_['htaccessWorking']): ?> |
|
27 | + <?php if (!$_['htaccessWorking']): ?> |
|
28 | 28 | <fieldset class="warning"> |
29 | - <legend><strong><?php p($l->t('Security warning'));?></strong></legend> |
|
30 | - <p><?php p($l->t('Your data directory and files are probably accessible from the internet because the .htaccess file does not work.'));?><br> |
|
29 | + <legend><strong><?php p($l->t('Security warning')); ?></strong></legend> |
|
30 | + <p><?php p($l->t('Your data directory and files are probably accessible from the internet because the .htaccess file does not work.')); ?><br> |
|
31 | 31 | <?php print_unescaped($l->t( |
32 | 32 | 'For information how to properly configure your server, please see the <a href="%s" target="_blank" rel="noreferrer noopener">documentation</a>.', |
33 | 33 | [link_to_docs('admin-install')] |
@@ -35,35 +35,35 @@ discard block |
||
35 | 35 | </fieldset> |
36 | 36 | <?php endif; ?> |
37 | 37 | <fieldset id="adminaccount"> |
38 | - <legend><?php print_unescaped($l->t( 'Create an <strong>admin account</strong>' )); ?></legend> |
|
38 | + <legend><?php print_unescaped($l->t('Create an <strong>admin account</strong>')); ?></legend> |
|
39 | 39 | <p class="grouptop"> |
40 | 40 | <input type="text" name="adminlogin" id="adminlogin" |
41 | - placeholder="<?php p($l->t( 'Username' )); ?>" |
|
41 | + placeholder="<?php p($l->t('Username')); ?>" |
|
42 | 42 | value="<?php p($_['adminlogin']); ?>" |
43 | 43 | autocomplete="off" autocapitalize="none" autocorrect="off" autofocus required> |
44 | - <label for="adminlogin" class="infield"><?php p($l->t( 'Username' )); ?></label> |
|
44 | + <label for="adminlogin" class="infield"><?php p($l->t('Username')); ?></label> |
|
45 | 45 | </p> |
46 | 46 | <p class="groupbottom"> |
47 | 47 | <input type="password" name="adminpass" data-typetoggle="#show" id="adminpass" |
48 | - placeholder="<?php p($l->t( 'Password' )); ?>" |
|
48 | + placeholder="<?php p($l->t('Password')); ?>" |
|
49 | 49 | value="<?php p($_['adminpass']); ?>" |
50 | 50 | autocomplete="off" autocapitalize="none" autocorrect="off" required> |
51 | - <label for="adminpass" class="infield"><?php p($l->t( 'Password' )); ?></label> |
|
51 | + <label for="adminpass" class="infield"><?php p($l->t('Password')); ?></label> |
|
52 | 52 | <input type="checkbox" id="show" class="hidden-visually" name="show"> |
53 | - <label for="show" class="hidden-visually"><?php p($l->t( 'Show password')); ?></label> |
|
53 | + <label for="show" class="hidden-visually"><?php p($l->t('Show password')); ?></label> |
|
54 | 54 | </p> |
55 | 55 | </fieldset> |
56 | 56 | |
57 | - <?php if(!$_['directoryIsSet'] or !$_['dbIsSet'] or count($_['errors']) > 0): ?> |
|
57 | + <?php if (!$_['directoryIsSet'] or !$_['dbIsSet'] or count($_['errors']) > 0): ?> |
|
58 | 58 | <fieldset id="advancedHeader"> |
59 | - <legend><a id="showAdvanced" tabindex="0" href="#"><?php p($l->t( 'Storage & database' )); ?><img src="<?php print_unescaped(image_path('', 'actions/caret-white.svg')); ?>" /></a></legend> |
|
59 | + <legend><a id="showAdvanced" tabindex="0" href="#"><?php p($l->t('Storage & database')); ?><img src="<?php print_unescaped(image_path('', 'actions/caret-white.svg')); ?>" /></a></legend> |
|
60 | 60 | </fieldset> |
61 | 61 | <?php endif; ?> |
62 | 62 | |
63 | - <?php if(!$_['directoryIsSet'] or count($_['errors']) > 0): ?> |
|
63 | + <?php if (!$_['directoryIsSet'] or count($_['errors']) > 0): ?> |
|
64 | 64 | <fieldset id="datadirField"> |
65 | 65 | <div id="datadirContent"> |
66 | - <label for="directory"><?php p($l->t( 'Data folder' )); ?></label> |
|
66 | + <label for="directory"><?php p($l->t('Data folder')); ?></label> |
|
67 | 67 | <input type="text" name="directory" id="directory" |
68 | 68 | placeholder="<?php p(OC::$SERVERROOT.'/data'); ?>" |
69 | 69 | value="<?php p($_['directory']); ?>" |
@@ -72,19 +72,19 @@ discard block |
||
72 | 72 | </fieldset> |
73 | 73 | <?php endif; ?> |
74 | 74 | |
75 | - <?php if(!$_['dbIsSet'] or count($_['errors']) > 0): ?> |
|
75 | + <?php if (!$_['dbIsSet'] or count($_['errors']) > 0): ?> |
|
76 | 76 | <fieldset id='databaseBackend'> |
77 | - <?php if($_['hasMySQL'] or $_['hasPostgreSQL'] or $_['hasOracle']) |
|
78 | - $hasOtherDB = true; else $hasOtherDB =false; //other than SQLite ?> |
|
79 | - <legend><?php p($l->t( 'Configure the database' )); ?></legend> |
|
77 | + <?php if ($_['hasMySQL'] or $_['hasPostgreSQL'] or $_['hasOracle']) |
|
78 | + $hasOtherDB = true; else $hasOtherDB = false; //other than SQLite ?> |
|
79 | + <legend><?php p($l->t('Configure the database')); ?></legend> |
|
80 | 80 | <div id="selectDbType"> |
81 | - <?php foreach($_['databases'] as $type => $label): ?> |
|
82 | - <?php if(count($_['databases']) === 1): ?> |
|
81 | + <?php foreach ($_['databases'] as $type => $label): ?> |
|
82 | + <?php if (count($_['databases']) === 1): ?> |
|
83 | 83 | <p class="info"> |
84 | - <?php p($l->t( 'Only %s is available.', [$label] )); ?> |
|
85 | - <?php p($l->t( 'Install and activate additional PHP modules to choose other database types.' )); ?><br> |
|
84 | + <?php p($l->t('Only %s is available.', [$label])); ?> |
|
85 | + <?php p($l->t('Install and activate additional PHP modules to choose other database types.')); ?><br> |
|
86 | 86 | <a href="<?php print_unescaped(link_to_docs('admin-source_install')); ?>" target="_blank" rel="noreferrer noopener"> |
87 | - <?php p($l->t( 'For more details check out the documentation.' )); ?> ↗</a> |
|
87 | + <?php p($l->t('For more details check out the documentation.')); ?> ↗</a> |
|
88 | 88 | </p> |
89 | 89 | <input type="hidden" id="dbtype" name="dbtype" value="<?php p($type) ?>"> |
90 | 90 | <?php else: ?> |
@@ -96,64 +96,64 @@ discard block |
||
96 | 96 | </div> |
97 | 97 | </fieldset> |
98 | 98 | |
99 | - <?php if($hasOtherDB): ?> |
|
99 | + <?php if ($hasOtherDB): ?> |
|
100 | 100 | <fieldset id='databaseField'> |
101 | 101 | <div id="use_other_db"> |
102 | 102 | <p class="grouptop"> |
103 | - <label for="dbuser" class="infield"><?php p($l->t( 'Database user' )); ?></label> |
|
103 | + <label for="dbuser" class="infield"><?php p($l->t('Database user')); ?></label> |
|
104 | 104 | <input type="text" name="dbuser" id="dbuser" |
105 | - placeholder="<?php p($l->t( 'Database user' )); ?>" |
|
105 | + placeholder="<?php p($l->t('Database user')); ?>" |
|
106 | 106 | value="<?php p($_['dbuser']); ?>" |
107 | 107 | autocomplete="off" autocapitalize="none" autocorrect="off"> |
108 | 108 | </p> |
109 | 109 | <p class="groupmiddle"> |
110 | 110 | <input type="password" name="dbpass" id="dbpass" data-typetoggle="#dbpassword-toggle" |
111 | - placeholder="<?php p($l->t( 'Database password' )); ?>" |
|
111 | + placeholder="<?php p($l->t('Database password')); ?>" |
|
112 | 112 | value="<?php p($_['dbpass']); ?>" |
113 | 113 | autocomplete="off" autocapitalize="none" autocorrect="off"> |
114 | - <label for="dbpass" class="infield"><?php p($l->t( 'Database password' )); ?></label> |
|
114 | + <label for="dbpass" class="infield"><?php p($l->t('Database password')); ?></label> |
|
115 | 115 | <input type="checkbox" id="dbpassword-toggle" class="hidden-visually" name="dbpassword-toggle"> |
116 | 116 | <label for="dbpassword-toggle"></label> |
117 | 117 | </p> |
118 | 118 | <p class="groupmiddle"> |
119 | - <label for="dbname" class="infield"><?php p($l->t( 'Database name' )); ?></label> |
|
119 | + <label for="dbname" class="infield"><?php p($l->t('Database name')); ?></label> |
|
120 | 120 | <input type="text" name="dbname" id="dbname" |
121 | - placeholder="<?php p($l->t( 'Database name' )); ?>" |
|
121 | + placeholder="<?php p($l->t('Database name')); ?>" |
|
122 | 122 | value="<?php p($_['dbname']); ?>" |
123 | 123 | autocomplete="off" autocapitalize="none" autocorrect="off" |
124 | 124 | pattern="[0-9a-zA-Z$_-]+"> |
125 | 125 | </p> |
126 | - <?php if($_['hasOracle']): ?> |
|
126 | + <?php if ($_['hasOracle']): ?> |
|
127 | 127 | <div id="use_oracle_db"> |
128 | 128 | <p class="groupmiddle"> |
129 | - <label for="dbtablespace" class="infield"><?php p($l->t( 'Database tablespace' )); ?></label> |
|
129 | + <label for="dbtablespace" class="infield"><?php p($l->t('Database tablespace')); ?></label> |
|
130 | 130 | <input type="text" name="dbtablespace" id="dbtablespace" |
131 | - placeholder="<?php p($l->t( 'Database tablespace' )); ?>" |
|
131 | + placeholder="<?php p($l->t('Database tablespace')); ?>" |
|
132 | 132 | value="<?php p($_['dbtablespace']); ?>" |
133 | 133 | autocomplete="off" autocapitalize="none" autocorrect="off"> |
134 | 134 | </p> |
135 | 135 | </div> |
136 | 136 | <?php endif; ?> |
137 | 137 | <p class="groupbottom"> |
138 | - <label for="dbhost" class="infield"><?php p($l->t( 'Database host' )); ?></label> |
|
138 | + <label for="dbhost" class="infield"><?php p($l->t('Database host')); ?></label> |
|
139 | 139 | <input type="text" name="dbhost" id="dbhost" |
140 | - placeholder="<?php p($l->t( 'Database host' )); ?>" |
|
140 | + placeholder="<?php p($l->t('Database host')); ?>" |
|
141 | 141 | value="<?php p($_['dbhost']); ?>" |
142 | 142 | autocomplete="off" autocapitalize="none" autocorrect="off"> |
143 | 143 | </p> |
144 | 144 | <p class="info"> |
145 | - <?php p($l->t( 'Please specify the port number along with the host name (e.g., localhost:5432).' )); ?> |
|
145 | + <?php p($l->t('Please specify the port number along with the host name (e.g., localhost:5432).')); ?> |
|
146 | 146 | </p> |
147 | 147 | </div> |
148 | 148 | </fieldset> |
149 | 149 | <?php endif; ?> |
150 | 150 | <?php endif; ?> |
151 | 151 | |
152 | - <?php if(!$_['dbIsSet'] or count($_['errors']) > 0): ?> |
|
152 | + <?php if (!$_['dbIsSet'] or count($_['errors']) > 0): ?> |
|
153 | 153 | <fieldset id="sqliteInformation" class="warning"> |
154 | - <legend><?php p($l->t('Performance warning'));?></legend> |
|
155 | - <p><?php p($l->t('You chose SQLite as database.'));?></p> |
|
156 | - <p><?php p($l->t('SQLite should only be used for minimal and development instances. For production we recommend a different database backend.'));?></p> |
|
154 | + <legend><?php p($l->t('Performance warning')); ?></legend> |
|
155 | + <p><?php p($l->t('You chose SQLite as database.')); ?></p> |
|
156 | + <p><?php p($l->t('SQLite should only be used for minimal and development instances. For production we recommend a different database backend.')); ?></p> |
|
157 | 157 | <p><?php p($l->t('If you use clients for file syncing, the use of SQLite is highly discouraged.')); ?></p> |
158 | 158 | </fieldset> |
159 | 159 | <?php endif ?> |
@@ -162,19 +162,19 @@ discard block |
||
162 | 162 | <p class="info"> |
163 | 163 | <input type="checkbox" id="install-recommended-apps" name="install-recommended-apps" class="checkbox checkbox--white" checked> |
164 | 164 | <label for="install-recommended-apps"> |
165 | - <?php p($l->t( 'Install recommended apps' )); ?> |
|
166 | - <span><?php p($l->t( 'Calendar, Contacts, Talk, Mail & OnlyOffice' )); ?></span> |
|
165 | + <?php p($l->t('Install recommended apps')); ?> |
|
166 | + <span><?php p($l->t('Calendar, Contacts, Talk, Mail & OnlyOffice')); ?></span> |
|
167 | 167 | </label> |
168 | 168 | </p> |
169 | 169 | </fieldset> |
170 | 170 | |
171 | 171 | <div class="icon-loading-dark float-spinner"> </div> |
172 | 172 | |
173 | - <div class="buttons"><input type="submit" class="primary" value="<?php p($l->t( 'Finish setup' )); ?>" data-finishing="<?php p($l->t( 'Finishing …' )); ?>"></div> |
|
173 | + <div class="buttons"><input type="submit" class="primary" value="<?php p($l->t('Finish setup')); ?>" data-finishing="<?php p($l->t('Finishing …')); ?>"></div> |
|
174 | 174 | |
175 | 175 | <p class="info"> |
176 | 176 | <span class="icon-info-white"></span> |
177 | - <?php p($l->t('Need help?'));?> |
|
178 | - <a target="_blank" rel="noreferrer noopener" href="<?php p(link_to_docs('admin-install')); ?>"><?php p($l->t('See the documentation'));?> ↗</a> |
|
177 | + <?php p($l->t('Need help?')); ?> |
|
178 | + <a target="_blank" rel="noreferrer noopener" href="<?php p(link_to_docs('admin-install')); ?>"><?php p($l->t('See the documentation')); ?> ↗</a> |
|
179 | 179 | </p> |
180 | 180 | </form> |
@@ -39,14 +39,14 @@ discard block |
||
39 | 39 | /** |
40 | 40 | * actions that user backends can define |
41 | 41 | */ |
42 | - const CREATE_USER = 1; // 1 << 0 |
|
43 | - const SET_PASSWORD = 16; // 1 << 4 |
|
44 | - const CHECK_PASSWORD = 256; // 1 << 8 |
|
45 | - const GET_HOME = 4096; // 1 << 12 |
|
46 | - const GET_DISPLAYNAME = 65536; // 1 << 16 |
|
47 | - const SET_DISPLAYNAME = 1048576; // 1 << 20 |
|
48 | - const PROVIDE_AVATAR = 16777216; // 1 << 24 |
|
49 | - const COUNT_USERS = 268435456; // 1 << 28 |
|
42 | + const CREATE_USER = 1; // 1 << 0 |
|
43 | + const SET_PASSWORD = 16; // 1 << 4 |
|
44 | + const CHECK_PASSWORD = 256; // 1 << 8 |
|
45 | + const GET_HOME = 4096; // 1 << 12 |
|
46 | + const GET_DISPLAYNAME = 65536; // 1 << 16 |
|
47 | + const SET_DISPLAYNAME = 1048576; // 1 << 20 |
|
48 | + const PROVIDE_AVATAR = 16777216; // 1 << 24 |
|
49 | + const COUNT_USERS = 268435456; // 1 << 28 |
|
50 | 50 | |
51 | 51 | protected $possibleActions = [ |
52 | 52 | self::CREATE_USER => 'createUser', |
@@ -68,8 +68,8 @@ discard block |
||
68 | 68 | */ |
69 | 69 | public function getSupportedActions() { |
70 | 70 | $actions = 0; |
71 | - foreach($this->possibleActions as $action => $methodName) { |
|
72 | - if(method_exists($this, $methodName)) { |
|
71 | + foreach ($this->possibleActions as $action => $methodName) { |
|
72 | + if (method_exists($this, $methodName)) { |
|
73 | 73 | $actions |= $action; |
74 | 74 | } |
75 | 75 | } |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | * compared with self::CREATE_USER etc. |
87 | 87 | */ |
88 | 88 | public function implementsActions($actions) { |
89 | - return (bool)($this->getSupportedActions() & $actions); |
|
89 | + return (bool) ($this->getSupportedActions() & $actions); |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | /** |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | public function getDisplayNames($search = '', $limit = null, $offset = null) { |
151 | 151 | $displayNames = []; |
152 | 152 | $users = $this->getUsers($search, $limit, $offset); |
153 | - foreach ( $users as $user) { |
|
153 | + foreach ($users as $user) { |
|
154 | 154 | $displayNames[$user] = $user; |
155 | 155 | } |
156 | 156 | return $displayNames; |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | return; |
174 | 174 | } |
175 | 175 | |
176 | - $this->dispatcher->dispatch(IGroup::class . '::preAddUser', new GenericEvent($this, [ |
|
176 | + $this->dispatcher->dispatch(IGroup::class.'::preAddUser', new GenericEvent($this, [ |
|
177 | 177 | 'user' => $user, |
178 | 178 | ])); |
179 | 179 | |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | $this->users[$user->getUID()] = $user; |
188 | 188 | } |
189 | 189 | |
190 | - $this->dispatcher->dispatch(IGroup::class . '::postAddUser', new GenericEvent($this, [ |
|
190 | + $this->dispatcher->dispatch(IGroup::class.'::postAddUser', new GenericEvent($this, [ |
|
191 | 191 | 'user' => $user, |
192 | 192 | ])); |
193 | 193 | |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | */ |
207 | 207 | public function removeUser($user) { |
208 | 208 | $result = false; |
209 | - $this->dispatcher->dispatch(IGroup::class . '::preRemoveUser', new GenericEvent($this, [ |
|
209 | + $this->dispatcher->dispatch(IGroup::class.'::preRemoveUser', new GenericEvent($this, [ |
|
210 | 210 | 'user' => $user, |
211 | 211 | ])); |
212 | 212 | if ($this->emitter) { |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | } |
220 | 220 | } |
221 | 221 | if ($result) { |
222 | - $this->dispatcher->dispatch(IGroup::class . '::postRemoveUser', new GenericEvent($this, [ |
|
222 | + $this->dispatcher->dispatch(IGroup::class.'::postRemoveUser', new GenericEvent($this, [ |
|
223 | 223 | 'user' => $user, |
224 | 224 | ])); |
225 | 225 | if ($this->emitter) { |
@@ -265,8 +265,8 @@ discard block |
||
265 | 265 | public function count($search = '') { |
266 | 266 | $users = false; |
267 | 267 | foreach ($this->backends as $backend) { |
268 | - if($backend->implementsActions(\OC\Group\Backend::COUNT_USERS)) { |
|
269 | - if($users === false) { |
|
268 | + if ($backend->implementsActions(\OC\Group\Backend::COUNT_USERS)) { |
|
269 | + if ($users === false) { |
|
270 | 270 | //we could directly add to a bool variable, but this would |
271 | 271 | //be ugly |
272 | 272 | $users = 0; |
@@ -285,8 +285,8 @@ discard block |
||
285 | 285 | public function countDisabled() { |
286 | 286 | $users = false; |
287 | 287 | foreach ($this->backends as $backend) { |
288 | - if($backend instanceof ICountDisabledInGroup) { |
|
289 | - if($users === false) { |
|
288 | + if ($backend instanceof ICountDisabledInGroup) { |
|
289 | + if ($users === false) { |
|
290 | 290 | //we could directly add to a bool variable, but this would |
291 | 291 | //be ugly |
292 | 292 | $users = 0; |
@@ -329,7 +329,7 @@ discard block |
||
329 | 329 | } |
330 | 330 | |
331 | 331 | $result = false; |
332 | - $this->dispatcher->dispatch(IGroup::class . '::preDelete', new GenericEvent($this)); |
|
332 | + $this->dispatcher->dispatch(IGroup::class.'::preDelete', new GenericEvent($this)); |
|
333 | 333 | if ($this->emitter) { |
334 | 334 | $this->emitter->emit('\OC\Group', 'preDelete', [$this]); |
335 | 335 | } |
@@ -340,7 +340,7 @@ discard block |
||
340 | 340 | } |
341 | 341 | } |
342 | 342 | if ($result) { |
343 | - $this->dispatcher->dispatch(IGroup::class . '::postDelete', new GenericEvent($this)); |
|
343 | + $this->dispatcher->dispatch(IGroup::class.'::postDelete', new GenericEvent($this)); |
|
344 | 344 | if ($this->emitter) { |
345 | 345 | $this->emitter->emit('\OC\Group', 'postDelete', [$this]); |
346 | 346 | } |
@@ -398,7 +398,7 @@ discard block |
||
398 | 398 | * @since 16.0.0 |
399 | 399 | */ |
400 | 400 | public function hideFromCollaboration(): bool { |
401 | - return array_reduce($this->backends, function (bool $hide, GroupInterface $backend) { |
|
401 | + return array_reduce($this->backends, function(bool $hide, GroupInterface $backend) { |
|
402 | 402 | return $hide | ($backend instanceof IHideFromCollaborationBackend && $backend->hideGroup($this->gid)); |
403 | 403 | }, false); |
404 | 404 | } |
@@ -53,8 +53,8 @@ discard block |
||
53 | 53 | */ |
54 | 54 | public function getSupportedActions() { |
55 | 55 | $actions = 0; |
56 | - foreach($this->possibleActions as $action => $methodName) { |
|
57 | - if(method_exists($this, $methodName)) { |
|
56 | + foreach ($this->possibleActions as $action => $methodName) { |
|
57 | + if (method_exists($this, $methodName)) { |
|
58 | 58 | $actions |= $action; |
59 | 59 | } |
60 | 60 | } |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | * compared with \OC\Group\Backend::CREATE_GROUP etc. |
72 | 72 | */ |
73 | 73 | public function implementsActions($actions) { |
74 | - return (bool)($this->getSupportedActions() & $actions); |
|
74 | + return (bool) ($this->getSupportedActions() & $actions); |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | /** |