Extensions

This commit is contained in:
Gauvain Boiché
2020-04-04 23:28:30 +02:00
parent 3a964fe237
commit 155e626426
286 changed files with 10757 additions and 2 deletions

View File

@@ -0,0 +1,30 @@
<?php
/**
* phpBB Studio's Dice 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\dice\acp;
/**
* phpBB Studio's Dice ACP module info.
*/
class dice_info
{
public function module()
{
return [
'filename' => '\phpbbstudio\dice\acp\dice_module',
'title' => 'ACP_DICE_CAT',
'modes' => [
'dashboard' => [
'title' => 'ACP_DICE_DASH',
'auth' => 'ext_phpbbstudio/dice && acl_a_dice_admin',
'cat' => ['ACP_DICE_CAT'],
],
],
];
}
}