Overview

Namespaces

  • None
  • VSP
    • Core
      • Abstracts
      • Interfaces
      • Traits
        • WC_Compatibility
    • Deprecation
    • Helper
    • Modules
      • Addons
      • Logger

Classes

  • VSP\Ajax
  • VSP\Ajaxer
  • VSP\Base
  • VSP\Cache
  • VSP\Core\Abstracts\Addon
  • VSP\Core\Abstracts\Log_Handler
  • VSP\Core\Abstracts\Plugin_Settings
  • VSP\Core\Instance_Handler
  • VSP\Deprecation\Actions
  • VSP\Deprecation\Filters
  • VSP\Error
  • VSP\Framework
  • VSP\Framework_Admin
  • VSP\Framework_Base
  • VSP\Framework_Modules
  • VSP\Helper
  • VSP\Helper\Price_Calculation
  • VSP\Modules\Addons
  • VSP\Modules\Addons\Admin
  • VSP\Modules\Addons\Core
  • VSP\Modules\Logger
  • VSP\Modules\Logger\File_Handler
  • VSP\Modules\Logger\Levels
  • VSP\Modules\Shortcode
  • VSP\Modules\System_Logs
  • VSP\Modules\System_Tools
  • VSP\Modules\WPOnion
  • VSP\Setup
  • VSP\WC_Compatibility
  • VSP_Framework_Loader

Interfaces

  • VSP\Core\Interfaces\Log_Handler
  • VSP\Core\Interfaces\Logger

Traits

  • VSP\Core\Traits\Array_Helper
  • VSP\Core\Traits\Framework
  • VSP\Core\Traits\String_Helper
  • VSP\Core\Traits\URL
  • VSP\Core\Traits\WC_Compatibility\Product
  • VSP\Core\Traits\WC_Compatibility\Version
  • VSP\Core\Traits\WC_Helper
  • VSP\Core\Traits\WP

Functions

  • vsp_add_wc_required_notice
  • vsp_ajax_action
  • vsp_current_screen
  • vsp_date_format
  • vsp_delete_cache
  • vsp_doing_it_wrong
  • vsp_force_load
  • vsp_force_load_vendors
  • vsp_get_cache
  • vsp_get_cache_defaults
  • vsp_get_file_paths
  • vsp_get_logger
  • vsp_get_time_in_seconds
  • vsp_is_admin
  • vsp_is_ajax
  • vsp_is_cron
  • vsp_is_error
  • vsp_is_frontend
  • vsp_is_heartbeat
  • vsp_is_json
  • vsp_is_request
  • vsp_is_screen
  • vsp_json_last_error
  • vsp_list_files
  • vsp_list_log_files
  • vsp_load_core_assets
  • vsp_load_file
  • vsp_log_msg
  • vsp_logger
  • vsp_make_log_list_tree
  • vsp_maybe_load
  • vsp_placeholder_img
  • vsp_print_log_files_ui
  • vsp_register_assets
  • vsp_register_plugin
  • vsp_send_callback_error
  • vsp_send_callback_success
  • vsp_send_json_callback
  • vsp_set_cache
  • vsp_set_time_limit
  • vsp_slashit
  • vsp_time_format
  • vsp_unslashit
  • vsp_url
  • vsp_validate_required_plugin
  • Overview
  • Namespace
  • Class
  1:   2:   3:   4:   5:   6:   7:   8:   9:  10:  11:  12:  13:  14:  15:  16:  17:  18:  19:  20:  21:  22:  23:  24:  25:  26:  27:  28:  29:  30:  31:  32:  33:  34:  35:  36:  37:  38:  39:  40:  41:  42:  43:  44:  45:  46:  47:  48:  49:  50:  51:  52:  53:  54:  55:  56:  57:  58:  59:  60:  61:  62:  63:  64:  65:  66:  67:  68:  69:  70:  71:  72:  73:  74:  75:  76:  77:  78:  79:  80:  81:  82:  83:  84:  85:  86:  87:  88:  89:  90:  91:  92:  93:  94:  95:  96:  97:  98:  99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 
<?php

namespace VSP\Core\Traits;

defined( 'ABSPATH' ) || exit;

/**
 * Trait VSP_Framework_Array_Trait
 *
 * @author Varun Sridharan <varunsridharan23@gmail.com>
 */
trait Array_Helper {
    /**
     * Converts JSON String To Array
     *
     * @param string $data
     * @param bool   $to_object if Set To true then it returns as object or array
     *
     * @return array|bool
     */
    public static function json_to( $data = '', $to_object = false ) {
        $json = json_decode( $data, $to_object );
        return ( null === $json ) ? false : $json;
    }

    /**
     * Groups the elements of an array based on the given function.
     *
     * @param $items
     * @param $group_callback_function
     *
     * @return array
     * @example array_group_by(['one', 'two', 'three'], 'strlen') // [3 => ['one', 'two'], 5 => ['three']]
     */
    public static function array_group_by( $items, $group_callback_function ) {
        $group = [];
        foreach ( $items as $item ) {
            if ( ( ! is_string( $group_callback_function ) && is_callable( $group_callback_function ) ) || function_exists( $group_callback_function ) ) {
                $key             = call_user_func( $group_callback_function, $item );
                $group[ $key ][] = $item;
            } elseif ( is_object( $item ) ) {
                $group[ $item->{$group_callback_function} ][] = $item;
            } elseif ( isset( $item[ $group_callback_function ] ) ) {
                $group[ $item[ $group_callback_function ] ][] = $item;
            }
        }

        return $group;
    }

    /**
     * Checks a flat list for duplicate values. Returns true if duplicate values exists and false if values are all unique.
     *
     * @param $items
     *
     * @return bool
     */
    public static function array_has_duplicates( $items ) {
        return count( $items ) > count( array_unique( $items ) );
    }

    /**
     * Like wp_parse_args but supports recursivity
     * By default converts the returned type based on the $args and $defaults
     *
     * @param array|object $args Values to merge with $defaults.
     * @param array|object $defaults Array, Object that serves as the defaults or string.
     * @param boolean      $deep if set to true then it will do a deep merge.
     * @param boolean      $preserve_type Optional. Convert output array into object if $args or $defaults if it is. Default true.
     * @param boolean      $preserve_integer_keys Optional. If given, integer keys will be preserved and merged instead of appended.
     *
     * @return array|object $output Merged user defined values with defaults.
     */
    public static function parse_args( $args, $defaults, $deep = false, $preserve_type = true, $preserve_integer_keys = false ) {
        if ( false === $deep ) {
            return wp_parse_args( $args, $defaults );
        }

        $output = array();
        foreach ( array( $defaults, $args ) as $list ) {
            foreach ( (array) $list as $key => $value ) {
                if ( is_integer( $key ) && ! $preserve_integer_keys ) {
                    $output[] = $value;
                } elseif ( isset( $output[ $key ] ) && ( is_array( $output[ $key ] ) || is_object( $output[ $key ] ) ) && ( is_array( $value ) || is_object( $value ) ) ) {
                    $output[ $key ] = self::parse_args( $value, $output[ $key ], $deep, $preserve_type, $preserve_integer_keys );
                } else {
                    $output[ $key ] = $value;
                }
            }
        }
        return ( $preserve_type && ( is_object( $args ) || is_object( $defaults ) ) ) ? (object) $output : $output;
    }

    /**
     * Filters An Array based on the given value
     *
     * @param array $required
     * @param array $existing
     *
     * @return array
     * @example
     * $required = array('somekey1','somekey2');
     * $existing = array('somekey1'=>'OMG','somekey2'=>"EOO",'somekey3'=>'okclose');
     * $return = array('somekey1' => 'OMG','somekey2' => "EOO");
     */
    public static function filter_array_data( $required, $existing ) {
        if ( ! is_array( $required ) ) {
            return $existing;
        }
        foreach ( $existing as $slug => $name ) {
            if ( ! in_array( $slug, $required, true ) ) {
                unset( $existing[ $slug ] );
            }
        }
        return $existing;
    }
}

API documentation generated by ApiGen