61 lines
1.3 KiB
PHP
61 lines
1.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* This file is part of the Froxlor project.
|
|
* Copyright (c) 2010 the Froxlor Team (see authors).
|
|
*
|
|
* For the full copyright and license information, please view the COPYING
|
|
* file that was distributed with this source code. You can also view the
|
|
* COPYING file online at http://files.froxlor.org/misc/COPYING.txt
|
|
*
|
|
* @copyright (c) the authors
|
|
* @author Froxlor team <team@froxlor.org> (2010-)
|
|
* @license GPLv2 http://files.froxlor.org/misc/COPYING.txt
|
|
* @package Functions
|
|
* @version $Id$
|
|
*/
|
|
|
|
/**
|
|
* check whether a domain has subdomains added as full-domains
|
|
* #329
|
|
*
|
|
* @param int $id domain-id
|
|
*
|
|
* @return boolean
|
|
*/
|
|
function domainHasMainSubDomains($id = 0)
|
|
{
|
|
global $db;
|
|
|
|
$sql = "SELECT COUNT(`id`) as `mainsubs` FROM `".TABLE_PANEL_DOMAINS."` WHERE `ismainbutsubto` = '".(int)$id."'";
|
|
$result = $db->query_first($sql);
|
|
if(isset($result['mainsubs'])
|
|
&& $result['mainsubs'] > 0
|
|
) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* check whether a subof-domain exists
|
|
* #329
|
|
*
|
|
* @param int $id subof-domain-id
|
|
*
|
|
* @return boolean
|
|
*/
|
|
function domainMainToSubExists($id = 0)
|
|
{
|
|
global $db;
|
|
|
|
$sql = "SELECT `id` FROM `".TABLE_PANEL_DOMAINS."` WHERE `id` = '".(int)$id."'";
|
|
$result = $db->query_first($sql);
|
|
if(isset($result['id'])
|
|
&& $result['id'] > 0
|
|
) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|