forked from mirrors/easyappointments
Added new helper file with debugging related functions
This commit is contained in:
parent
85a6be1d7d
commit
8abeb4dbf2
1 changed files with 31 additions and 0 deletions
31
application/helpers/debug_helper.php
Normal file
31
application/helpers/debug_helper.php
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?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
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
if ( ! function_exists('dd'))
|
||||
{
|
||||
/**
|
||||
* Output the provided variables with "var_dump" and stop the execution.
|
||||
*
|
||||
* Example:
|
||||
*
|
||||
* dd($appointment, $service, $provider, $customer);
|
||||
*
|
||||
* @param mixed ...$vars
|
||||
*/
|
||||
function dd(...$vars)
|
||||
{
|
||||
var_dump($vars);
|
||||
|
||||
exit(1);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue