mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
When importing modules with use statements, they always require the fully qualified module name. Iow, there's no need to prefix them with an extra backslash. Ref: https://www.php.net/manual/en/language.namespaces.importing.php
26 lines
366 B
PHP
26 lines
366 B
PHP
<?php
|
|
|
|
namespace Zotlabs\Module;
|
|
|
|
use Zotlabs\Lib as Zlib;
|
|
|
|
class Permcat extends \Zotlabs\Web\Controller {
|
|
|
|
private $permcats = [];
|
|
|
|
public function init() {
|
|
if(! local_channel())
|
|
return;
|
|
|
|
$permcat = new Zlib\Permcat(local_channel());
|
|
|
|
if(argc() > 1)
|
|
json_return_and_die($permcat->fetch(argv(1)));
|
|
|
|
json_return_and_die($permcat->listing());
|
|
|
|
}
|
|
|
|
|
|
}
|