Can create groups

This commit is contained in:
Pierre HUBERT
2018-07-02 12:03:33 +02:00
parent 1637885a97
commit 30d6a1fd9d
5 changed files with 202 additions and 0 deletions

15
helpers/database.php Normal file
View File

@ -0,0 +1,15 @@
<?php
/**
* Database helper
*
* @author Pierre HUBERT
*/
/**
* Get and return database object
*
* @param DBLibrary The database object
*/
function db() : DBLibrary {
return CS::get()->db;
}