mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-08 17:12:25 +03:00
29 lines
1.1 KiB
PHP
29 lines
1.1 KiB
PHP
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
*
|
|
* @package EasyAppointments
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
|
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
* @link http://easyappointments.org
|
|
* @since v1.1.0
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
* 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_app_installed()
|
|
{
|
|
$framework =& get_instance();
|
|
|
|
return $framework->db->table_exists('users');
|
|
}
|