Initial commit

This commit is contained in:
privet.fun 2023-05-27 18:43:21 -07:00
commit 8d9504d2ad
34 changed files with 3508 additions and 0 deletions
privet/ailabs/acp

View file

@ -0,0 +1,30 @@
<?php
/**
*
* AI Labs extension
*
* @copyright (c) 2023, privet.fun, https://privet.fun
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/
namespace privet\ailabs\acp;
class main_info
{
public function module()
{
return [
'filename' => '\privet\ailabs\acp\main_module',
'title' => 'ACP_AILABS_TITLE',
'modes' => [
'settings' => [
'title' => 'ACP_AILABS_SETTINGS',
'auth' => 'ext_privet/ailabs && acl_a_board',
'cat' => ['ACP_AILABS_TITLE']
],
],
];
}
}