servnest/fn/reg.php

15 lines
407 B
PHP
Raw Normal View History

2021-02-17 21:48:49 +00:00
<?php
2021-02-18 21:40:16 +00:00
function regListUserDomains($username) {
2022-06-11 23:31:16 +00:00
return query('select', 'registry', ['username' => $username], 'domain');
2021-02-18 21:40:16 +00:00
}
2021-02-19 12:23:26 +00:00
function regCheckDomainPossession($domain) {
if (in_array($domain, regListUserDomains($_SESSION['username']), true) !== true)
userError("You don't own this domain.");
2021-02-18 21:40:16 +00:00
}
2021-02-19 12:23:26 +00:00
function regIsFree($domain) {
return empty(query('select', 'registry', ['domain' => $domain], 'domain'));
2021-02-17 21:48:49 +00:00
}