ContentTagging/acp/main_info.php

21 lines
534 B
PHP
Executable file

<?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'],
],
],
];
}
}