Newer
Older
vmk-demo-bot / adminback / include / helpers.php
@eugene-sukhodolskiy eugene-sukhodolskiy 16 days ago 175 bytes init
<?php

function db() {
	global $_DBCONN;
	return $_DBCONN;
}

$_CONF;
function conf() {
	global $_CONF;
	
	if(!$_CONF) {
		$_CONF = require "config.php";
	}

	return $_CONF;
}