Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
LaxSlash committed Sep 15, 2016
0 parents commit ddc6333
Show file tree
Hide file tree
Showing 22 changed files with 2,206 additions and 0 deletions.
30 changes: 30 additions & 0 deletions laxslash/ncrequests/acp/manage_requests_info.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?php
/**
* This file is a part of the Name Change Requests
* phpBB 3.1 Extension by LaxSlash1993.
*
* @copyright (c) LaxSlash1993 <https://www.github.com/LaxSlash>
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

namespace laxslash\ncrequests\acp;

class manage_requests_info
{
public function module()
{
return array(
'filename' => '\laxslash\ncrequests\acp\manage_requests_module',
'title' => 'ACP_LAXSLASH_NCREQUESTS_MANAGE_MODULE_TITLE',
'version' => '0.1 ALPHA',
'modes' => array(
'manage_requests' => array(
'title' => 'ACP_LAXSLASH_NCREQUESTS_MANAGE_MODULE_TITLE',
'auth' => 'ext_laxslash/ncrequests && acl_a_laxslash_ncrequests_manage_name_change_requests',
'cat' => array('ACP_CAT_USERS'),
),
),
);
}
}
Loading

0 comments on commit ddc6333

Please sign in to comment.