Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/gg.corals.io/wp-content/themes/bugster/includes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/gg.corals.io/wp-content/themes/bugster/includes/storage.php
<?php
/**
 * Theme storage manipulations
 *
 * @package BUGSTER
 * @since BUGSTER 1.0
 */

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

if ( ! function_exists( 'bugster_storage_get' ) ) {
	/**
	 * Return a value of the specified variable from the global theme storage.
	 *
	 * @param string $var_name  A name of the variable to get its value.
	 * @param mixed $default    Optional. A default value, used if the specified variable is not found
	 *                          in the global theme storage. If omitted - empty string is used as the default value.
	 *
	 * @return mixed            A value from the theme global storage or the default value.
	 */
	function bugster_storage_get( $var_name, $default = '' ) {
		global $BUGSTER_STORAGE;
		return isset( $BUGSTER_STORAGE[ $var_name ] ) ? $BUGSTER_STORAGE[ $var_name ] : $default;
	}
}

if ( ! function_exists( 'bugster_storage_set' ) ) {
	/**
	 * Set (update) a value of the specified variable in the global theme storage.
	 *
	 * @param string $var_name  A name of the variable to set (update) its value.
	 * @param mixed $value      A new value.
	 */
	function bugster_storage_set( $var_name, $value ) {
		global $BUGSTER_STORAGE;
		$BUGSTER_STORAGE[ $var_name ] = $value;
	}
}

if ( ! function_exists( 'bugster_storage_empty' ) ) {
	/**
	 * Check if a specified variable or an array key is empty (not exists or have an empty value) in the global theme storage.
	 *
	 * @param string $var_name  A name of the variable to check.
	 * @param string $key       Optional. A first array key. If specified - a ${$var_name}[$key] will be checked for empty.
	 * @param string $key2      Optional. A second array key. If specified - a ${$var_name}[$key][$key2] will be checked for empty.
	 *
	 * @return bool             Return true if the specified variable or array cell is not exists or contain an empty value.
	 */
	function bugster_storage_empty( $var_name, $key = '', $key2 = '' ) {
		global $BUGSTER_STORAGE;
		if ( '' !== $key && '' !== $key2 ) {
			return empty( $BUGSTER_STORAGE[ $var_name ][ $key ][ $key2 ] );
		} elseif ( '' !== $key ) {
			return empty( $BUGSTER_STORAGE[ $var_name ][ $key ] );
		} else {
			return empty( $BUGSTER_STORAGE[ $var_name ] );
		}
	}
}

if ( ! function_exists( 'bugster_storage_isset' ) ) {
	/**
	 * Check if a specified variable or an array key is set (exists) in the global theme storage.
	 *
	 * @param string $var_name  A name of the variable to check.
	 * @param string $key       Optional. A first array key. If specified - a ${$var_name}[$key] will be checked for exists.
	 * @param string $key2      Optional. A second array key. If specified - a ${$var_name}[$key][$key2] will be checked for exists.
	 *
	 * @return bool             Return true if the specified variable or array cell is set (exists).
	 */
	function bugster_storage_isset( $var_name, $key = '', $key2 = '' ) {
		global $BUGSTER_STORAGE;
		if ( '' !== $key && '' !== $key2 ) {
			return isset( $BUGSTER_STORAGE[ $var_name ][ $key ][ $key2 ] );
		} elseif ( '' !== $key ) {
			return isset( $BUGSTER_STORAGE[ $var_name ][ $key ] );
		} else {
			return isset( $BUGSTER_STORAGE[ $var_name ] );
		}
	}
}

if ( ! function_exists( 'bugster_storage_unset' ) ) {
	/**
	 * Delete the specified variable or an array key from the global theme storage.
	 *
	 * @param string $var_name  A name of the variable to delete.
	 * @param string $key       Optional. A first array key. If specified - a ${$var_name}[$key] will be deleted.
	 * @param string $key2      Optional. A second array key. If specified - a ${$var_name}[$key][$key2] will be deleted.
	 */
	function bugster_storage_unset( $var_name, $key = '', $key2 = '' ) {
		global $BUGSTER_STORAGE;
		if ( '' !== $key && '' !== $key2 ) {
			unset( $BUGSTER_STORAGE[ $var_name ][ $key ][ $key2 ] );
		} elseif ( '' !== $key ) {
			unset( $BUGSTER_STORAGE[ $var_name ][ $key ] );
		} else {
			unset( $BUGSTER_STORAGE[ $var_name ] );
		}
	}
}

if ( ! function_exists( 'bugster_storage_inc' ) ) {
	/**
	 * Increment the specified variable in the global theme storage.
	 *
	 * @param string $var_name  A name of the variable to increment.
	 * @param int $value        Optional. A value for increment. Default is 1. Specify -1 to decrement or any legal number value.
	 */
	function bugster_storage_inc( $var_name, $value = 1 ) {
		global $BUGSTER_STORAGE;
		if ( empty( $BUGSTER_STORAGE[ $var_name ] ) ) {
			$BUGSTER_STORAGE[ $var_name ] = 0;
		}
		$BUGSTER_STORAGE[ $var_name ] += $value;
	}
}

if ( ! function_exists( 'bugster_storage_concat' ) ) {
	/**
	 * Concatenate the specified variable in the global theme storage with the new value.
	 *
	 * @param string $var_name  A name of the variable to concatenate.
	 * @param int $value        A value to concatenate.
	 */
	function bugster_storage_concat( $var_name, $value ) {
		global $BUGSTER_STORAGE;
		if ( empty( $BUGSTER_STORAGE[ $var_name ] ) ) {
			$BUGSTER_STORAGE[ $var_name ] = '';
		}
		$BUGSTER_STORAGE[ $var_name ] .= $value;
	}
}

if ( ! function_exists( 'bugster_storage_get_array' ) ) {
	
	function bugster_storage_get_array( $var_name, $key, $key2 = '', $default = '' ) {
		global $BUGSTER_STORAGE;
		if ( '' === $key2 ) {
			return ! empty( $var_name ) && '' !== $key && isset( $BUGSTER_STORAGE[ $var_name ][ $key ] ) ? $BUGSTER_STORAGE[ $var_name ][ $key ] : $default;
		} else {
			return ! empty( $var_name ) && '' !== $key && isset( $BUGSTER_STORAGE[ $var_name ][ $key ][ $key2 ] ) ? $BUGSTER_STORAGE[ $var_name ][ $key ][ $key2 ] : $default;
		}
	}
}

if ( ! function_exists( 'bugster_storage_set_array' ) ) {
	/**
	 * Set a new value in the array in the global theme storage.
	 *
	 * @param string $var_name  A name of the array.
	 * @param string $key       An array key: If is empty string - an array element ${$var_name}[] will be added,
	 *                          else - an array element ${$var_name}[$key] will be set (updated).
	 * @param mixed  $value     A new value for the specified element of the array.
	 */
	function bugster_storage_set_array( $var_name, $key, $value ) {
		global $BUGSTER_STORAGE;
		if ( ! isset( $BUGSTER_STORAGE[ $var_name ] ) ) {
			$BUGSTER_STORAGE[ $var_name ] = array();
		}
		if ( '' === $key ) {
			$BUGSTER_STORAGE[ $var_name ][] = $value;
		} else {
			$BUGSTER_STORAGE[ $var_name ][ $key ] = $value;
		}
	}
}

if ( ! function_exists( 'bugster_storage_set_array2' ) ) {
	/**
	 * Set a new value in the two-dimensional array in the global theme storage.
	 *
	 * @param string $var_name  A name of the array.
	 * @param string $key       A first key of the array.
	 * @param string $key2      A second key of the array: ${$var_name}[$key][$key2] will be updated.
	 * @param mixed  $value     A new value for the specified element of the array.
	 */
	function bugster_storage_set_array2( $var_name, $key, $key2, $value ) {
		global $BUGSTER_STORAGE;
		if ( ! isset( $BUGSTER_STORAGE[ $var_name ] ) ) {
			$BUGSTER_STORAGE[ $var_name ] = array();
		}
		if ( ! isset( $BUGSTER_STORAGE[ $var_name ][ $key ] ) ) {
			$BUGSTER_STORAGE[ $var_name ][ $key ] = array();
		}
		if ( '' === $key2 ) {
			$BUGSTER_STORAGE[ $var_name ][ $key ][] = $value;
		} else {
			$BUGSTER_STORAGE[ $var_name ][ $key ][ $key2 ] = $value;
		}
	}
}

if ( ! function_exists( 'bugster_storage_merge_array' ) ) {
	/**
	 * Merge new elements to the array in the global theme storage.
	 *
	 * @param string $var_name  A name of the array.
	 * @param string $key       An array key. If is empty string - an array ${$var_name} will be merged,
	 *                          else - an array ${$var_name}[$key] will be merged.
	 * @param array  $value     An array with elements to merge.
	 */
	function bugster_storage_merge_array( $var_name, $key, $value ) {
		global $BUGSTER_STORAGE;
		if ( ! isset( $BUGSTER_STORAGE[ $var_name ] ) ) {
			$BUGSTER_STORAGE[ $var_name ] = array();
		}
		if ( '' === $key ) {
			$BUGSTER_STORAGE[ $var_name ] = array_merge( $BUGSTER_STORAGE[ $var_name ], $value );
		} else {
			$BUGSTER_STORAGE[ $var_name ][ $key ] = array_merge( $BUGSTER_STORAGE[ $var_name ][ $key ], $value );
		}
	}
}

if ( ! function_exists( 'bugster_storage_set_array_after' ) ) {
	/**
	 * Insert new elements to the array in the global theme storage
	 * after the specified key.
	 *
	 * @param string       $var_name  A name of the array.
	 * @param string       $after     An array key to insert new elements after it.
	 * @param string|array $key       A key of a new element or an array with new elements.
	 * @param mixed        $value     A new value to insert (if the argument $key is a string).
	 */
	function bugster_storage_set_array_after( $var_name, $after, $key, $value = '' ) {
		global $BUGSTER_STORAGE;
		if ( ! isset( $BUGSTER_STORAGE[ $var_name ] ) ) {
			$BUGSTER_STORAGE[ $var_name ] = array();
		}
		if ( is_array( $key ) ) {
			bugster_array_insert_after( $BUGSTER_STORAGE[ $var_name ], $after, $key );
		} else {
			bugster_array_insert_after( $BUGSTER_STORAGE[ $var_name ], $after, array( $key => $value ) );
		}
	}
}

if ( ! function_exists( 'bugster_storage_set_array_before' ) ) {
	/**
	 * Insert new elements to the array in the global theme storage
	 * before the specified key.
	 *
	 * @param string       $var_name  A name of the array.
	 * @param string       $before    An array key to insert new elements before it.
	 * @param string|array $key       A key of a new element or an array with new elements.
	 * @param mixed        $value     A new value to insert (if the argument $key is a string).
	 */
	function bugster_storage_set_array_before( $var_name, $before, $key, $value = '' ) {
		global $BUGSTER_STORAGE;
		if ( ! isset( $BUGSTER_STORAGE[ $var_name ] ) ) {
			$BUGSTER_STORAGE[ $var_name ] = array();
		}
		if ( is_array( $key ) ) {
			bugster_array_insert_before( $BUGSTER_STORAGE[ $var_name ], $before, $key );
		} else {
			bugster_array_insert_before( $BUGSTER_STORAGE[ $var_name ], $before, array( $key => $value ) );
		}
	}
}

if ( ! function_exists( 'bugster_storage_push_array' ) ) {
	
	function bugster_storage_push_array( $var_name, $key, $value ) {
		global $BUGSTER_STORAGE;
		if ( ! isset( $BUGSTER_STORAGE[ $var_name ] ) ) {
			$BUGSTER_STORAGE[ $var_name ] = array();
		}
		if ( '' === $key ) {
			array_push( $BUGSTER_STORAGE[ $var_name ], $value );
		} else {
			if ( ! isset( $BUGSTER_STORAGE[ $var_name ][ $key ] ) ) {
				$BUGSTER_STORAGE[ $var_name ][ $key ] = array();
			}
			array_push( $BUGSTER_STORAGE[ $var_name ][ $key ], $value );
		}
	}
}

if ( ! function_exists( 'bugster_storage_pop_array' ) ) {
	
	function bugster_storage_pop_array( $var_name, $key = '', $defa = '' ) {
		global $BUGSTER_STORAGE;
		$rez = $defa;
		if ( '' === $key ) {
			if ( isset( $BUGSTER_STORAGE[ $var_name ] ) && is_array( $BUGSTER_STORAGE[ $var_name ] ) && count( $BUGSTER_STORAGE[ $var_name ] ) > 0 ) {
				$rez = array_pop( $BUGSTER_STORAGE[ $var_name ] );
			}
		} else {
			if ( isset( $BUGSTER_STORAGE[ $var_name ][ $key ] ) && is_array( $BUGSTER_STORAGE[ $var_name ][ $key ] ) && count( $BUGSTER_STORAGE[ $var_name ][ $key ] ) > 0 ) {
				$rez = array_pop( $BUGSTER_STORAGE[ $var_name ][ $key ] );
			}
		}
		return $rez;
	}
}

if ( ! function_exists( 'bugster_storage_inc_array' ) ) {
	/**
	 * Increment/Decrement the specified element of the array in the global theme storage.
	 *
	 * @param string       $var_name  A name of the array.
	 * @param string|array $key       A key of an array ${$var_name}[$key] to modify value.
	 * @param int          $value     Optional. A value for increment. Default is 1. Specify -1 to decrement or any legal number value.
	 */
	function bugster_storage_inc_array( $var_name, $key, $value = 1 ) {
		global $BUGSTER_STORAGE;
		if ( ! isset( $BUGSTER_STORAGE[ $var_name ] ) ) {
			$BUGSTER_STORAGE[ $var_name ] = array();
		}
		if ( empty( $BUGSTER_STORAGE[ $var_name ][ $key ] ) ) {
			$BUGSTER_STORAGE[ $var_name ][ $key ] = 0;
		}
		$BUGSTER_STORAGE[ $var_name ][ $key ] += $value;
	}
}

if ( ! function_exists( 'bugster_storage_concat_array' ) ) {
	/**
	 * Concatenate the specified element of the array with a new value in the global theme storage.
	 *
	 * @param string       $var_name  A name of the array.
	 * @param string|array $key       A key of an array ${$var_name}[$key] to concatenate with a new value.
	 * @param int          $value     A value to concatenate.
	 */
	function bugster_storage_concat_array( $var_name, $key, $value ) {
		global $BUGSTER_STORAGE;
		if ( ! isset( $BUGSTER_STORAGE[ $var_name ] ) ) {
			$BUGSTER_STORAGE[ $var_name ] = array();
		}
		if ( empty( $BUGSTER_STORAGE[ $var_name ][ $key ] ) ) {
			$BUGSTER_STORAGE[ $var_name ][ $key ] = '';
		}
		$BUGSTER_STORAGE[ $var_name ][ $key ] .= $value;
	}
}

if ( ! function_exists( 'bugster_storage_call_obj_method' ) ) {
	/**
	 * Call a specified method of the object from the global theme storage.
	 *
	 * @param string     $var_name  A name of the object.
	 * @param string     $method    A name of the method.
	 * @param midex|null $param     A parameter to pass to the method.
	 *
	 * @return mixed                Return a method result.
	 */
	function bugster_storage_call_obj_method( $var_name, $method, $param = null ) {
		global $BUGSTER_STORAGE;
		if ( null === $param ) {
			return ! empty( $var_name ) && ! empty( $method ) && isset( $BUGSTER_STORAGE[ $var_name ] ) ? $BUGSTER_STORAGE[ $var_name ]->$method() : '';
		} else {
			return ! empty( $var_name ) && ! empty( $method ) && isset( $BUGSTER_STORAGE[ $var_name ] ) ? $BUGSTER_STORAGE[ $var_name ]->$method( $param ) : '';
		}
	}
}

if ( ! function_exists( 'bugster_storage_get_obj_property' ) ) {
	/**
	 * Get a property value of the object from the global theme storage.
	 *
	 * @param string     $var_name  A name of the object.
	 * @param string     $prop      A name of the property.
	 * @param midex|null $default   Optional. A default value to return if a property is not exists.
	 *
	 * @return mixed                A value of the specified property.
	 */
	function bugster_storage_get_obj_property( $var_name, $prop, $default = '' ) {
		global $BUGSTER_STORAGE;
		return ! empty( $var_name ) && ! empty( $prop ) && isset( $BUGSTER_STORAGE[ $var_name ]->$prop ) ? $BUGSTER_STORAGE[ $var_name ]->$prop : $default;
	}
}

Spamworldpro Mini