for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
* User Notification Control [UNC]. An extension for the phpBB Forum Software package.
* @copyright (c) 2020-forever, Dark❶, https://dark1.tech
* @license GNU General Public License, version 2 (GPL-2.0)
*/
namespace dark1\usernotificationcontrol\acp;
* User Notification Control [UNC] ACP module info.
class main_info
{
public function module()
return [
'filename' => '\dark1\usernotificationcontrol\acp\main_module',
'title' => 'ACP_UNC_TITLE',
'modes' => [
'main' => [
'title' => 'ACP_UNC_MAIN',
'auth' => 'ext_dark1/usernotificationcontrol && acl_a_board',
'cat' => ['ACP_UNC_TITLE']
],
'prune' => [
'title' => 'ACP_UNC_PRUNE',
];
}