Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadminapi.php
More file actions
Latest commit
49 lines (45 loc) · 1.57 KB
/
Copy pathadminapi.php
File metadata and controls
49 lines (45 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
/**
* @package modules\cachemanager
* @category Xaraya Web Applications Framework
* @version 2.5.7
* @copyright see the html/credits.html file in this release
* @license GPL {@link http://www.gnu.org/licenses/gpl.html}
* @link https://github.com/mikespub/xaraya-modules
**/
namespaceXaraya\Modules\CacheManager;
useXaraya\Modules\AdminApiClass;
/**
* Handle the cachemanager admin API
*
* @method mixed configTplPrep(array $args)
* @method mixed convertseconds(array $args)
* @method mixed createhook(array $args)
* @method mixed deletehook(array $args)
* @method mixed getCachingconfig(array $args)
* @method mixed getblocks(array $args)
* @method mixed getcachedirs(mixed $dir = false)
* @method mixed getcacheinfo(array $args)
* @method mixed getcacheitem(array $args)
* @method mixed getcachekeys(array $args)
* @method mixed getcachelist(array $args)
* @method mixed getcachesize(array $args)
* @method mixed getcachetypes(array $args = [])
* @method mixed getmenulinks(array $args)
* @method mixed getmodules(array $args)
* @method mixed getobjects(array $args)
* @method mixed getqueries(array $args)
* @method mixed getstatus(array $args = [])
* @method mixed getstoragetypes(array $args = [])
* @method mixed getvariables(array $args)
* @method mixed regenstatic(array $args)
* @method mixed restoreCachingconfig(array $args)
* @method mixed saveCachingconfig(array $args)
* @method mixed updateconfighook(array $args)
* @method mixed updatehook(array $args)
* @extends AdminApiClass<Module>
*/
class AdminApi extends AdminApiClass
{
// ...
}