mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 01:52:22 +03:00
19 lines
598 B
PHP
19 lines
598 B
PHP
|
<?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');
|
||
|
|
||
|
}
|