/home/bonphmya/geldmarkplaatz.com/wp-contentccc/themes/revirta/revirta/includes/storage.php
<?php
/**
 * Theme storage manipulations
 *
 * @package WordPress
 * @subpackage REVIRTA
 * @since REVIRTA 1.0
 */

// Disable direct call
if ( ! defined( 'ABSPATH' ) ) { exit; }

// Get theme variable
if (!function_exists('revirta_storage_get')) {
	function revirta_storage_get($var_name, $default='') {
		global $REVIRTA_STORAGE;
		return isset($REVIRTA_STORAGE[$var_name]) ? $REVIRTA_STORAGE[$var_name] : $default;
	}
}

// Set theme variable
if (!function_exists('revirta_storage_set')) {
	function revirta_storage_set($var_name, $value) {
		global $REVIRTA_STORAGE;
		$REVIRTA_STORAGE[$var_name] = $value;
	}
}

// Check if theme variable is empty
if (!function_exists('revirta_storage_empty')) {
	function revirta_storage_empty($var_name, $key='', $key2='') {
		global $REVIRTA_STORAGE;
		if (!empty($key) && !empty($key2))
			return empty($REVIRTA_STORAGE[$var_name][$key][$key2]);
		else if (!empty($key))
			return empty($REVIRTA_STORAGE[$var_name][$key]);
		else
			return empty($REVIRTA_STORAGE[$var_name]);
	}
}

// Check if theme variable is set
if (!function_exists('revirta_storage_isset')) {
	function revirta_storage_isset($var_name, $key='', $key2='') {
		global $REVIRTA_STORAGE;
		if (!empty($key) && !empty($key2))
			return isset($REVIRTA_STORAGE[$var_name][$key][$key2]);
		else if (!empty($key))
			return isset($REVIRTA_STORAGE[$var_name][$key]);
		else
			return isset($REVIRTA_STORAGE[$var_name]);
	}
}

// Inc/Dec theme variable with specified value
if (!function_exists('revirta_storage_inc')) {
	function revirta_storage_inc($var_name, $value=1) {
		global $REVIRTA_STORAGE;
		if (empty($REVIRTA_STORAGE[$var_name])) $REVIRTA_STORAGE[$var_name] = 0;
		$REVIRTA_STORAGE[$var_name] += $value;
	}
}

// Concatenate theme variable with specified value
if (!function_exists('revirta_storage_concat')) {
	function revirta_storage_concat($var_name, $value) {
		global $REVIRTA_STORAGE;
		if (empty($REVIRTA_STORAGE[$var_name])) $REVIRTA_STORAGE[$var_name] = '';
		$REVIRTA_STORAGE[$var_name] .= $value;
	}
}

// Get array (one or two dim) element
if (!function_exists('revirta_storage_get_array')) {
	function revirta_storage_get_array($var_name, $key, $key2='', $default='') {
		global $REVIRTA_STORAGE;
		if (empty($key2))
			return !empty($var_name) && !empty($key) && isset($REVIRTA_STORAGE[$var_name][$key]) ? $REVIRTA_STORAGE[$var_name][$key] : $default;
		else
			return !empty($var_name) && !empty($key) && isset($REVIRTA_STORAGE[$var_name][$key][$key2]) ? $REVIRTA_STORAGE[$var_name][$key][$key2] : $default;
	}
}

// Set array element
if (!function_exists('revirta_storage_set_array')) {
	function revirta_storage_set_array($var_name, $key, $value) {
		global $REVIRTA_STORAGE;
		if (!isset($REVIRTA_STORAGE[$var_name])) $REVIRTA_STORAGE[$var_name] = array();
		if ($key==='')
			$REVIRTA_STORAGE[$var_name][] = $value;
		else
			$REVIRTA_STORAGE[$var_name][$key] = $value;
	}
}

// Set two-dim array element
if (!function_exists('revirta_storage_set_array2')) {
	function revirta_storage_set_array2($var_name, $key, $key2, $value) {
		global $REVIRTA_STORAGE;
		if (!isset($REVIRTA_STORAGE[$var_name])) $REVIRTA_STORAGE[$var_name] = array();
		if (!isset($REVIRTA_STORAGE[$var_name][$key])) $REVIRTA_STORAGE[$var_name][$key] = array();
		if ($key2==='')
			$REVIRTA_STORAGE[$var_name][$key][] = $value;
		else
			$REVIRTA_STORAGE[$var_name][$key][$key2] = $value;
	}
}

// Merge array elements
if (!function_exists('revirta_storage_merge_array')) {
	function revirta_storage_merge_array($var_name, $key, $value) {
		global $REVIRTA_STORAGE;
		if (!isset($REVIRTA_STORAGE[$var_name])) $REVIRTA_STORAGE[$var_name] = array();
		if ($key==='')
			$REVIRTA_STORAGE[$var_name] = array_merge($REVIRTA_STORAGE[$var_name], $value);
		else
			$REVIRTA_STORAGE[$var_name][$key] = array_merge($REVIRTA_STORAGE[$var_name][$key], $value);
	}
}

// Add array element after the key
if (!function_exists('revirta_storage_set_array_after')) {
	function revirta_storage_set_array_after($var_name, $after, $key, $value='') {
		global $REVIRTA_STORAGE;
		if (!isset($REVIRTA_STORAGE[$var_name])) $REVIRTA_STORAGE[$var_name] = array();
		if (is_array($key))
			revirta_array_insert_after($REVIRTA_STORAGE[$var_name], $after, $key);
		else
			revirta_array_insert_after($REVIRTA_STORAGE[$var_name], $after, array($key=>$value));
	}
}

// Add array element before the key
if (!function_exists('revirta_storage_set_array_before')) {
	function revirta_storage_set_array_before($var_name, $before, $key, $value='') {
		global $REVIRTA_STORAGE;
		if (!isset($REVIRTA_STORAGE[$var_name])) $REVIRTA_STORAGE[$var_name] = array();
		if (is_array($key))
			revirta_array_insert_before($REVIRTA_STORAGE[$var_name], $before, $key);
		else
			revirta_array_insert_before($REVIRTA_STORAGE[$var_name], $before, array($key=>$value));
	}
}

// Push element into array
if (!function_exists('revirta_storage_push_array')) {
	function revirta_storage_push_array($var_name, $key, $value) {
		global $REVIRTA_STORAGE;
		if (!isset($REVIRTA_STORAGE[$var_name])) $REVIRTA_STORAGE[$var_name] = array();
		if ($key==='')
			array_push($REVIRTA_STORAGE[$var_name], $value);
		else {
			if (!isset($REVIRTA_STORAGE[$var_name][$key])) $REVIRTA_STORAGE[$var_name][$key] = array();
			array_push($REVIRTA_STORAGE[$var_name][$key], $value);
		}
	}
}

// Pop element from array
if (!function_exists('revirta_storage_pop_array')) {
	function revirta_storage_pop_array($var_name, $key='', $defa='') {
		global $REVIRTA_STORAGE;
		$rez = $defa;
		if ($key==='') {
			if (isset($REVIRTA_STORAGE[$var_name]) && is_array($REVIRTA_STORAGE[$var_name]) && count($REVIRTA_STORAGE[$var_name]) > 0) 
				$rez = array_pop($REVIRTA_STORAGE[$var_name]);
		} else {
			if (isset($REVIRTA_STORAGE[$var_name][$key]) && is_array($REVIRTA_STORAGE[$var_name][$key]) && count($REVIRTA_STORAGE[$var_name][$key]) > 0) 
				$rez = array_pop($REVIRTA_STORAGE[$var_name][$key]);
		}
		return $rez;
	}
}

// Inc/Dec array element with specified value
if (!function_exists('revirta_storage_inc_array')) {
	function revirta_storage_inc_array($var_name, $key, $value=1) {
		global $REVIRTA_STORAGE;
		if (!isset($REVIRTA_STORAGE[$var_name])) $REVIRTA_STORAGE[$var_name] = array();
		if (empty($REVIRTA_STORAGE[$var_name][$key])) $REVIRTA_STORAGE[$var_name][$key] = 0;
		$REVIRTA_STORAGE[$var_name][$key] += $value;
	}
}

// Concatenate array element with specified value
if (!function_exists('revirta_storage_concat_array')) {
	function revirta_storage_concat_array($var_name, $key, $value) {
		global $REVIRTA_STORAGE;
		if (!isset($REVIRTA_STORAGE[$var_name])) $REVIRTA_STORAGE[$var_name] = array();
		if (empty($REVIRTA_STORAGE[$var_name][$key])) $REVIRTA_STORAGE[$var_name][$key] = '';
		$REVIRTA_STORAGE[$var_name][$key] .= $value;
	}
}

// Call object's method
if (!function_exists('revirta_storage_call_obj_method')) {
	function revirta_storage_call_obj_method($var_name, $method, $param=null) {
		global $REVIRTA_STORAGE;
		if ($param===null)
			return !empty($var_name) && !empty($method) && isset($REVIRTA_STORAGE[$var_name]) ? $REVIRTA_STORAGE[$var_name]->$method(): '';
		else
			return !empty($var_name) && !empty($method) && isset($REVIRTA_STORAGE[$var_name]) ? $REVIRTA_STORAGE[$var_name]->$method($param): '';
	}
}

// Get object's property
if (!function_exists('revirta_storage_get_obj_property')) {
	function revirta_storage_get_obj_property($var_name, $prop, $default='') {
		global $REVIRTA_STORAGE;
		return !empty($var_name) && !empty($prop) && isset($REVIRTA_STORAGE[$var_name]->$prop) ? $REVIRTA_STORAGE[$var_name]->$prop : $default;
	}
}
?>