mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 01:52:22 +03:00
Created new installation_helper.php file.
This commit is contained in:
parent
b68afb8a71
commit
416428ee4e
1 changed files with 18 additions and 0 deletions
18
src/application/helpers/installation_helper.php
Normal file
18
src/application/helpers/installation_helper.php
Normal 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');
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue