mirror of
https://gh.wpcy.net/https://github.com/netcccyun/easypanel.git
synced 2026-04-23 03:52:25 +08:00
24 lines
No EOL
341 B
PHP
24 lines
No EOL
341 B
PHP
<?php
|
|
class ViewsAPI extends API
|
|
{
|
|
/**
|
|
* 从kangle服务器更新
|
|
*/
|
|
public function viewsUpdate()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function viewDel($name)
|
|
{
|
|
if (daocall('views', 'viewsDel', array($name))) {
|
|
if (apicall('dnssync', 'syncAllInit', array())) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|
|
|
|
?>
|