Ajout d'une extension

This commit is contained in:
Gauvain Boiché
2020-04-04 18:27:27 +02:00
parent c3ed8cc1c1
commit 3a964fe237
387 changed files with 58921 additions and 0 deletions

View File

@@ -0,0 +1,57 @@
<?php
/**
*
* phpBB Studio - Advanced Shop System. An extension for the phpBB Forum Software package.
*
* @copyright (c) 2019, phpBB Studio, https://www.phpbbstudio.com
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/
namespace phpbbstudio\ass\acp;
/**
* phpBB Studio - Advanced Shop System: ACP info
*/
class main_info
{
public function module()
{
return [
'filename' => '\phpbbstudio\ass\acp\main_module',
'title' => 'ACP_ASS_SYSTEM',
'modes' => [
'overview' => [
'title' => 'ACP_ASS_OVERVIEW',
'auth' => 'ext_phpbbstudio/ass && acl_a_ass_overview',
'cat' => ['ACP_ASS_SYSTEM'],
],
'settings' => [
'title' => 'ACP_ASS_SETTINGS',
'auth' => 'ext_phpbbstudio/ass && acl_a_ass_settings',
'cat' => ['ACP_ASS_SYSTEM'],
],
'items' => [
'title' => 'ACP_ASS_ITEMS',
'auth' => 'ext_phpbbstudio/ass && acl_a_ass_items',
'cat' => ['ACP_ASS_SYSTEM'],
],
'files' => [
'title' => 'ACP_ASS_FILES',
'auth' => 'ext_phpbbstudio/ass && acl_a_ass_files',
'cat' => ['ACP_ASS_SYSTEM'],
],
'logs' => [
'title' => 'ACP_ASS_LOGS',
'auth' => 'ext_phpbbstudio/ass && acl_a_ass_logs',
'cat' => ['ACP_ASS_SYSTEM'],
],
'inventory' => [
'title' => 'ACP_ASS_INVENTORY',
'auth' => 'ext_phpbbstudio/ass && acl_a_ass_inventory',
'cat' => ['ACP_ASS_SYSTEM'],
],
],
];
}
}