Added overrides for all the framework classes as templates and for consistency
This commit is contained in:
parent
12ec5c1ac3
commit
3233c19571
26 changed files with 1061 additions and 93 deletions
44
application/core/EA_Benchmark.php
Normal file
44
application/core/EA_Benchmark.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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 https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Easy!Appointments benchmark.
|
||||
*
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_Benchmark extends CI_Benchmark {
|
||||
//
|
||||
}
|
44
application/core/EA_Cache.php
Normal file
44
application/core/EA_Cache.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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 https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Easy!Appointments cache.
|
||||
*
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_Cache extends CI_Cache {
|
||||
//
|
||||
}
|
44
application/core/EA_Calendar.php
Normal file
44
application/core/EA_Calendar.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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 https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Easy!Appointments calendar.
|
||||
*
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_Calendar extends CI_Calendar {
|
||||
//
|
||||
}
|
44
application/core/EA_Config.php
Normal file
44
application/core/EA_Config.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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 https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Easy!Appointments config.
|
||||
*
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_Config extends CI_Config {
|
||||
//
|
||||
}
|
|
@ -14,30 +14,30 @@
|
|||
/**
|
||||
* Easy!Appointments controller.
|
||||
*
|
||||
* @property CI_Benchmark $benchmark
|
||||
* @property CI_Cache $cache
|
||||
* @property CI_Calendar $calendar
|
||||
* @property CI_Config $config
|
||||
* @property CI_DB_forge $dbforge
|
||||
* @property CI_DB_query_builder $db
|
||||
* @property CI_DB_utility $dbutil
|
||||
* @property CI_Email $email
|
||||
* @property CI_Encrypt $encrypt
|
||||
* @property CI_Encryption $encryption
|
||||
* @property CI_Exceptions $exceptions
|
||||
* @property CI_Hooks $hooks
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property CI_Lang $lang
|
||||
* @property CI_Loader $load
|
||||
* @property CI_Log $log
|
||||
* @property CI_Migration $migration
|
||||
* @property CI_Output $output
|
||||
* @property CI_Profiler $profiler
|
||||
* @property CI_Router $router
|
||||
* @property CI_Security $security
|
||||
* @property CI_Session $session
|
||||
* @property CI_URI $uri
|
||||
* @property CI_Upload $upload
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*
|
||||
* @property Admins_model $admins_model
|
||||
* @property Appointments_model $appointments_model
|
||||
|
|
44
application/core/EA_DB_forge.php
Normal file
44
application/core/EA_DB_forge.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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 https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Easy!Appointments DB forge.
|
||||
*
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_DB_forge extends CI_DB_forge {
|
||||
//
|
||||
}
|
44
application/core/EA_DB_query_builder.php
Normal file
44
application/core/EA_DB_query_builder.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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 https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Easy!Appointments DB query builder.
|
||||
*
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_DB_query_builder extends CI_DB_query_builder {
|
||||
//
|
||||
}
|
44
application/core/EA_DB_utility.php
Normal file
44
application/core/EA_DB_utility.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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 https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Easy!Appointments DB utility.
|
||||
*
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_DB_utility extends CI_DB_utility {
|
||||
//
|
||||
}
|
44
application/core/EA_Email.php
Normal file
44
application/core/EA_Email.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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 https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Easy!Appointments email.
|
||||
*
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_Email extends CI_Email {
|
||||
//
|
||||
}
|
44
application/core/EA_Encrypt.php
Normal file
44
application/core/EA_Encrypt.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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 https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Easy!Appointments encrypt.
|
||||
*
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_Encrypt extends CI_Encrypt {
|
||||
//
|
||||
}
|
44
application/core/EA_Encryption.php
Normal file
44
application/core/EA_Encryption.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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 https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Easy!Appointments encryption.
|
||||
*
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_Encryption extends CI_Encryption {
|
||||
//
|
||||
}
|
44
application/core/EA_Exceptions.php
Normal file
44
application/core/EA_Exceptions.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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 https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Easy!Appointments exceptions.
|
||||
*
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_Exceptions extends CI_Exceptions {
|
||||
//
|
||||
}
|
44
application/core/EA_Hooks.php
Normal file
44
application/core/EA_Hooks.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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 https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Easy!Appointments hooks.
|
||||
*
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_Hooks extends CI_Hooks {
|
||||
//
|
||||
}
|
|
@ -14,30 +14,30 @@
|
|||
/**
|
||||
* Easy!Appointments input.
|
||||
*
|
||||
* @property CI_Benchmark $benchmark
|
||||
* @property CI_Cache $cache
|
||||
* @property CI_Calendar $calendar
|
||||
* @property CI_Config $config
|
||||
* @property CI_DB_forge $dbforge
|
||||
* @property CI_DB_query_builder $db
|
||||
* @property CI_DB_utility $dbutil
|
||||
* @property CI_Email $email
|
||||
* @property CI_Encrypt $encrypt
|
||||
* @property CI_Encryption $encryption
|
||||
* @property CI_Exceptions $exceptions
|
||||
* @property CI_Hooks $hooks
|
||||
* @property CI_Input $input
|
||||
* @property CI_Lang $lang
|
||||
* @property CI_Loader $load
|
||||
* @property CI_Log $log
|
||||
* @property CI_Migration $migration
|
||||
* @property CI_Output $output
|
||||
* @property CI_Profiler $profiler
|
||||
* @property CI_Router $router
|
||||
* @property CI_Security $security
|
||||
* @property CI_Session $session
|
||||
* @property CI_URI $uri
|
||||
* @property CI_Upload $upload
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*
|
||||
* @property string $raw_input_stream
|
||||
*/
|
||||
|
|
44
application/core/EA_Lang.php
Normal file
44
application/core/EA_Lang.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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 https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Easy!Appointments lang.
|
||||
*
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_Lang extends CI_Lang {
|
||||
//
|
||||
}
|
44
application/core/EA_Loader.php
Normal file
44
application/core/EA_Loader.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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 https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Easy!Appointments loader.
|
||||
*
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_Loader extends CI_Loader {
|
||||
//
|
||||
}
|
44
application/core/EA_Log.php
Normal file
44
application/core/EA_Log.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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 https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Easy!Appointments log.
|
||||
*
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_Log extends CI_Log {
|
||||
//
|
||||
}
|
|
@ -14,30 +14,30 @@
|
|||
/**
|
||||
* Easy!Appointments migration.
|
||||
*
|
||||
* @property CI_Benchmark $benchmark
|
||||
* @property CI_Cache $cache
|
||||
* @property CI_Calendar $calendar
|
||||
* @property CI_Config $config
|
||||
* @property CI_DB_forge $dbforge
|
||||
* @property CI_DB_query_builder $db
|
||||
* @property CI_DB_utility $dbutil
|
||||
* @property CI_Email $email
|
||||
* @property CI_Encrypt $encrypt
|
||||
* @property CI_Encryption $encryption
|
||||
* @property CI_Exceptions $exceptions
|
||||
* @property CI_Hooks $hooks
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property CI_Lang $lang
|
||||
* @property CI_Loader $load
|
||||
* @property CI_Log $log
|
||||
* @property CI_Migration $migration
|
||||
* @property CI_Output $output
|
||||
* @property CI_Profiler $profiler
|
||||
* @property CI_Router $router
|
||||
* @property CI_Security $security
|
||||
* @property CI_Session $session
|
||||
* @property CI_URI $uri
|
||||
* @property CI_Upload $upload
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_Migration extends CI_Migration {
|
||||
//
|
||||
|
|
|
@ -14,30 +14,30 @@
|
|||
/**
|
||||
* Easy!Appointments model.
|
||||
*
|
||||
* @property CI_Benchmark $benchmark
|
||||
* @property CI_Cache $cache
|
||||
* @property CI_Calendar $calendar
|
||||
* @property CI_Config $config
|
||||
* @property CI_DB_forge $dbforge
|
||||
* @property CI_DB_query_builder $db
|
||||
* @property CI_DB_utility $dbutil
|
||||
* @property CI_Email $email
|
||||
* @property CI_Encrypt $encrypt
|
||||
* @property CI_Encryption $encryption
|
||||
* @property CI_Exceptions $exceptions
|
||||
* @property CI_Hooks $hooks
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property CI_Lang $lang
|
||||
* @property CI_Loader $load
|
||||
* @property CI_Log $log
|
||||
* @property CI_Migration $migration
|
||||
* @property CI_Output $output
|
||||
* @property CI_Profiler $profiler
|
||||
* @property CI_Router $router
|
||||
* @property CI_Security $security
|
||||
* @property CI_Session $session
|
||||
* @property CI_URI $uri
|
||||
* @property CI_Upload $upload
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_Model extends CI_Model {
|
||||
/**
|
||||
|
|
44
application/core/EA_Output.php
Normal file
44
application/core/EA_Output.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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 https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Easy!Appointments output.
|
||||
*
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_Output extends CI_Output {
|
||||
//
|
||||
}
|
44
application/core/EA_Profiler.php
Normal file
44
application/core/EA_Profiler.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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 https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Easy!Appointments profiler.
|
||||
*
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_Profiler extends CI_Profiler {
|
||||
//
|
||||
}
|
44
application/core/EA_Router.php
Normal file
44
application/core/EA_Router.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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 https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Easy!Appointments router.
|
||||
*
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_Router extends CI_Router {
|
||||
//
|
||||
}
|
44
application/core/EA_Security.php
Normal file
44
application/core/EA_Security.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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 https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Easy!Appointments security.
|
||||
*
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_Security extends CI_Security {
|
||||
//
|
||||
}
|
44
application/core/EA_Session.php
Normal file
44
application/core/EA_Session.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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 https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Easy!Appointments session.
|
||||
*
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_Session extends CI_Session {
|
||||
//
|
||||
}
|
44
application/core/EA_URI.php
Normal file
44
application/core/EA_URI.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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 https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Easy!Appointments URI.
|
||||
*
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_URI extends CI_URI {
|
||||
//
|
||||
}
|
44
application/core/EA_Upload.php
Normal file
44
application/core/EA_Upload.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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 https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.4.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Easy!Appointments upload.
|
||||
*
|
||||
* @property EA_Benchmark $benchmark
|
||||
* @property EA_Cache $cache
|
||||
* @property EA_Calendar $calendar
|
||||
* @property EA_Config $config
|
||||
* @property EA_DB_forge $dbforge
|
||||
* @property EA_DB_query_builder $db
|
||||
* @property EA_DB_utility $dbutil
|
||||
* @property EA_Email $email
|
||||
* @property EA_Encrypt $encrypt
|
||||
* @property EA_Encryption $encryption
|
||||
* @property EA_Exceptions $exceptions
|
||||
* @property EA_Hooks $hooks
|
||||
* @property EA_Input $input
|
||||
* @property EA_Lang $lang
|
||||
* @property EA_Loader $load
|
||||
* @property EA_Log $log
|
||||
* @property EA_Migration $migration
|
||||
* @property EA_Output $output
|
||||
* @property EA_Profiler $profiler
|
||||
* @property EA_Router $router
|
||||
* @property EA_Security $security
|
||||
* @property EA_Session $session
|
||||
* @property EA_Upload $upload
|
||||
* @property EA_URI $uri
|
||||
*/
|
||||
class EA_Upload extends CI_Upload {
|
||||
//
|
||||
}
|
Loading…
Reference in a new issue