First commit

This commit is contained in:
ebassi -
commit 3a568602da
36 changed files with 1584 additions and 0 deletions

21
acp/main_info.php Executable file
View file

@ -0,0 +1,21 @@
<?php
namespace pedodev\tagging\acp;
class main_info
{
public function module()
{
return [
'filename' => '\pedodev\tagging\acp\main_module',
'title' => 'ACP_TAGGING_TITLE',
'modes' => [
'settings' => [
'title' => 'ACP_TAGGING_SETTINGS',
'auth' => 'ext_pedodev/tagging && acl_a_board',
'cat' => ['ACP_TAGGING_TITLE'],
],
],
];
}
}