MaketRandevu/application/helpers/installation_helper.php

29 lines
1.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php defined('BASEPATH') or exit('No direct script access allowed');
/* ----------------------------------------------------------------------------
* MaketRandevu - MAKET Randevu Portalı
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) Alex Tselegidis
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
* @link https://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(): bool
{
$CI = &get_instance();
return $CI->db->table_exists('users');
}