You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mods-for-HESK-Netsyms/api/DataAccess/CommonDao.php

22 lines
398 B
PHP

<?php
namespace DataAccess;
use Exception;
class CommonDao extends \BaseClass {
/**
* @throws Exception if the database isn't properly configured
*/
function init() {
if (!function_exists('hesk_dbConnect')) {
throw new \BaseException('Database not loaded!');
}
hesk_dbConnect();
}
function close() {
hesk_dbClose();
}
}