/home/ivoiecob/public_html/wp-content/plugins/doubly/inc_php/functions.php
<?php
/**
 * @package Doubly
 * @author Unlimited Elements
 * @copyright (C) 2022 Unlimited Elements, All Rights Reserved. 
 * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
 **/


if(!defined("DOUBLY_INC")) die("restricted access");

	if(!function_exists("dmp")){
		function dmp($str){
			echo "<div align='left' style='direction:ltr;'>";
			echo "<pre>";
			print_r($str);
			echo "</pre>";
			echo "</div>";
		}
	}