なし
function OX_checkSystemInstalled()
{
$path = @dirname(__FILE__);
if (!@empty($path)) {
if (@file_exists($path . '/var/UPGRADE')) {
return false;
} else {
return true;
}
}
return false;
}