mirror of
https://gh.wpcy.net/https://github.com/netcccyun/easypanel.git
synced 2026-04-24 07:53:54 +08:00
15 lines
No EOL
250 B
PHP
15 lines
No EOL
250 B
PHP
<?php
|
|
needRole('admin');
|
|
class DnsControl extends Control
|
|
{
|
|
public function domainAdd()
|
|
{
|
|
$records = daocall('records', 'recordList', array());
|
|
|
|
foreach ($records as $re) {
|
|
apicall('bind', 'domainAdd', array($re));
|
|
}
|
|
}
|
|
}
|
|
|
|
?>
|