HEX
Server: Apache
System: Linux cpanelx.inxs.ro 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
User: crowdandsafety (1041)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //proc/self/cwd/wp-content/plugins/cornerstone/includes/classes/Services/Registry.php
<?php

namespace Themeco\Cornerstone\Services;

use Themeco\Cornerstone\Util\StableSorter;

class Registry implements Service {

  protected $settings = array();
  protected $values = array();
  protected $control_partials = array();
  protected $sorter;
  protected $registry_loaded = false;
  protected $partials_loaded = false;

  public function setup() {
    require_once( cornerstone()->path . '/includes/elements/values.php' );
    $this->sorter = StableSorter::make( [ $this, 'prioritize_control' ] );
  }

  public function load_registry() {
    if ( ! $this->registry_loaded ) {
      $this->registry_loaded = true;
      require_once( cornerstone()->path . '/includes/elements/registry-setup.php' );
      do_action( 'cs_registry_setup' );
    }
  }

  public function load_partials() {
    if ( ! $this->partials_loaded ) {
      $files = cornerstone()->config('control-partials' );
      $path = cornerstone()->path . '/includes/elements/control-partials';
      foreach ($files as $file) {
        $filename = "$path/$file.php";
        if ( file_exists($filename) ) {
          require_once( $filename );
        }
      }
    }
  }

  public function remember( $key, $value ) {
    $this->maybe_warn();

    if ( isset( $this->settings[ $key ] ) ) {
      return;
    }

    $this->settings[ $key ] = $value;
  }

  public function recall( $key, $args = [], $warn = true ) {
    $this->maybe_warn( $warn );
    $this->load_registry();

    if ( ! isset( $this->settings[ $key ] ) ) {
      return [];
    }

    if ( ! is_array( $this->settings[ $key ] ) ) {
      return $this->settings[ $key ];
    }

    return array_merge( $this->settings[$key], $args );
  }

  public function maybe_recall( $key, $fallback, $args ) {
    if ( ! $this->in_builder() ) {
      return $fallback;
    }
    return $this->recall($key, $args, false);
  }

  public function in_builder() {
    return did_action('cs_before_late_data') || did_action( 'cornerstone_before_boot_app' );
  }

  public function maybe_warn( $warn = true ) {
    if (! $warn) return;
    if ( ! $this->in_builder() && ! isset($_REQUEST['tco-debug']) ) {
      trigger_error( sprintf( 'cs_remember/cs_recall used outside of builder context | %s line %s', debug_backtrace()[2]['file'], debug_backtrace()[2]['line'] ), E_USER_WARNING );
    }
  }

  public function define_values( $key, $values ) {

    if ( isset( $this->values[ $key ] ) ) {
      return trigger_error( "cs_define_values | $key already defined.", E_USER_WARNING );
    }

    if ( ! is_array( $values )) {
      return trigger_error( 'cs_define_values | values must be an array', E_USER_WARNING );
    }

    $this->values[ $key ] = $values;

  }

  public function extend_values($key, $values) {
    if (empty($this->values[$key])) {
      trigger_error("extend_values not extending from a predefined value : " . $key);
      return false;
    }

    $this->values[$key] = array_merge($this->values[$key], $values);
    return true;
  }

  /**
   * Take a set of values and optionally apply a key prefix
   * If you pass a string for the first parameter it will look up
   * values in the registry
   * @param string|array $values
   * @param string $key_prefix
   * @return array
   */
  public function values( $values, $key_prefix = '' ) {

    if ( is_string( $values ) ) {
      $values = isset( $this->values[ $values ] ) ? $this->values[ $values ] : array();
    }

    if ( $key_prefix ) {
      $prefixed = array();
      foreach ( $values as $key => $value ) {
        $prefixed[ $key_prefix . '_' . $key ] = $value;
      }
      return $prefixed;
    }

    return $values;

  }

  public function defaults( $name, $key_prefix = '' ) {
    $values = $this->values( $name, $key_prefix );
    $output = [];

    foreach ($values as $key => $value) {
      $output[$key] = $value[0];
    }
    return $output;
  }

  public function compose_values( $all_values ) {

    $composed = array();

    foreach( $all_values as $_values ) {
      $values = is_string( $_values ) ? $this->values( $_values ) : $_values;

      foreach ( $values as $key => $value ) {
        if ( ! $value ) {
          unset( $composed[ $key ] );
        } else {
          $composed[ $key ] = $value;
        }
      }
    }

    return $composed;

  }

  public function prioritize_control( $a, $b ) {

    $prioritized_a = isset( $a['priority'] ) ? $a['priority'] : 10;
    $prioritized_b = isset( $b['priority'] ) ? $b['priority'] : 10;

    if ($prioritized_a === $prioritized_b) {
      return 0;
    }

    return ($prioritized_a < $prioritized_b) ? -1 : 1;
  }

  public function compose_partials( $control_sets ) {

    $result = array(
      'controls' => array(),
      'control_nav' => array()
    );

    $groups = array();

    foreach ($control_sets as $control_set) {
      foreach( $result as $key => $value ) {
        if ( isset( $control_set[ $key ] ) ) {
          $result[ $key ] = array_merge( $result[ $key ], $control_set[ $key ] );
          if ($key !== 'control_nav') {
            $result[ $key ] = $this->sorter->sort( $result[ $key ] );
          }
        }
      }
    }

    return $result;

  }


  public function register_control_partial( $name, $function ) {
    if ( isset( $this->control_partials[ $name ] ) ) {
      return;
    }

    if ( ! is_callable( $function ) ) {
      return trigger_error( 'cs_register_control_partial was not passed a function as the second argument.', E_USER_WARNING );
    }

    $this->control_partials[ $name ] = $function;
  }

  public function apply_control_partial( $name, $settings = array() ) {
    $this->load_partials();
    if ( ! isset( $this->control_partials[ $name ] ) ) {
      trigger_error( "attempting to apply non-existent control partial: $name", E_USER_WARNING );
      return array();
    }

    if ( isset( $settings['condition'] ) && ! isset( $settings['conditions'] ) ) {
      $settings['conditions'] = array( $settings['condition'] );
    }

    return call_user_func( $this->control_partials[ $name ], $settings );
  }

}