Created new installation_helper.php file.

This commit is contained in:
Alex Tselegidis 2015-10-18 19:51:24 +02:00
parent b68afb8a71
commit 416428ee4e
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* Check if Easy!Appointments is installed.
*
* This function will check some factors to determine if Easy!Appointments is
* installed or not. It is possible that the installation is properly configure
* without being recognized by this method.
*
* Notice: You can add more checks into this file in order to further check the
* installation state of the application.
*
* @return bool Returns whether E!A is installed or not.
*/
function is_ea_installed() {
return $this->db->table_exists('ea_users');
}