Skip to content

Commit

Permalink
Code style
Browse files Browse the repository at this point in the history
  • Loading branch information
Flerex committed Dec 16, 2018
1 parent 97ab38b commit 6ca2963
Show file tree
Hide file tree
Showing 40 changed files with 2,508 additions and 1,123 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Expand Up @@ -109,4 +109,6 @@ fabric.properties
# Sonarlint plugin
.idea/sonarlint

# End of https://www.gitignore.io/api/phpstorm
# End of https://www.gitignore.io/api/phpstorm

/vendor/
11 changes: 11 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 20 additions & 1 deletion .idea/linkedaccounts.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions .idea/php.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 21 additions & 21 deletions acp/main_info.php
@@ -1,12 +1,12 @@
<?php
/**
*
* Linked Accounts extension for phpBB 3.2
*
* @copyright (c) 2018 Flerex
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/
*
* Linked Accounts extension for phpBB 3.2
*
* @copyright (c) 2018 Flerex
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

namespace flerex\linkedaccounts\acp;

Expand All @@ -15,23 +15,23 @@ class main_info
public function module()
{
return array(
'filename' => '\flerex\linkedaccounts\acp\main_module',
'title' => 'LINKED_ACCOUNTS',
'modes' => array(
'overview' => array(
'title' => 'ADM_LINKED_ACCOUNTS_OVERVIEW',
'auth' => 'ext_flerex/linkedaccounts && acl_a_link_accounts',
'cat' => array('ADM_LINKED_ACCOUNTS'),
'filename' => '\flerex\linkedaccounts\acp\main_module',
'title' => 'LINKED_ACCOUNTS',
'modes' => array(
'overview' => array(
'title' => 'ADM_LINKED_ACCOUNTS_OVERVIEW',
'auth' => 'ext_flerex/linkedaccounts && acl_a_link_accounts',
'cat' => array('ADM_LINKED_ACCOUNTS'),
),
'settings' => array(
'title' => 'ADM_LINKED_ACCOUNTS_SETTINGS',
'auth' => 'ext_flerex/linkedaccounts && acl_a_link_accounts',
'cat' => array('ADM_LINKED_ACCOUNTS'),
'settings' => array(
'title' => 'ADM_LINKED_ACCOUNTS_SETTINGS',
'auth' => 'ext_flerex/linkedaccounts && acl_a_link_accounts',
'cat' => array('ADM_LINKED_ACCOUNTS'),
),
'management' => array(
'title' => 'ADM_LINKED_ACCOUNTS_MANAGEMENT',
'auth' => 'ext_flerex/linkedaccounts && acl_a_link_accounts',
'cat' => array('ADM_LINKED_ACCOUNTS'),
'title' => 'ADM_LINKED_ACCOUNTS_MANAGEMENT',
'auth' => 'ext_flerex/linkedaccounts && acl_a_link_accounts',
'cat' => array('ADM_LINKED_ACCOUNTS'),
),
),
);
Expand Down

0 comments on commit 6ca2963

Please sign in to comment.