HEX
Server: Apache/2.4.41
System: Linux mainweb 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: nationalmedicaregrp (1119)
PHP: 8.3.7
Disabled: exec,passthru,shell_exec,system,popen,proc_open,pcntl_exec
Upload Files
File: /home/flbestac/public_html/wp-content/plugins/wp-seopress/src/Services/VariablesToString.php
<?php

namespace SEOPress\Services;

if ( ! defined('ABSPATH')) {
    exit;
}

class VariablesToString {
    const REGEX = "#\[\[(.*?)\]\]#";

    /**
     * @since 4.5.0
     *
     * @param string $string
     *
     * @return array
     */
    public function getVariables($string) {
        if ( ! is_string($string)) {
            return [];
        }

        preg_match_all(self::REGEX, $string, $matches);

        return $matches;
    }

    /**
     * @since 4.5.0
     *
     * @param function $variable
     * @param array    $context
     *
     * @return void
     */
    public function getValueFromContext($variable, $context= []) {
        if ( ! array_key_exists($variable, $context)) {
            return '';
        }

        return $context[$variable];
    }

    /**
     * @since 4.5.0
     *
     * @param string $string
     * @param mixed  $context
     *
     * @return string
     */
    public function replace($string, $context = []) {
        $variables = $this->getVariables($string);

        if ( ! array_key_exists(1, $variables)) {
            return $string;
        }

        foreach ($variables[1] as $key => $variable) {
            $value  = $this->getValueFromContext($variable, $context);

            $string = str_replace($variables[0][$key], $value, $string);
        }

        return $string;
    }

    /**
     * @since 4.5.0
     *
     * @param array $data
     *
     * @return array
     */
    protected function removeDataEmpty($data) {
        return array_filter($data, function( $value ){
            return "0" == $value || ! empty( $value );
        });
    }

    /**
     * @since 4.5.0
     *
     * @param array $data
     * @param array $context
     * @param mixed $options
     *
     * @return array
     */
    public function replaceDataToString($data, $context = [], $options = []) {
        foreach ($data as $key => $value) {
            if (is_array($value)) {
                $data[$key] = $this->replaceDataToString($value, $context, $options);
            } else {
                $data[$key] = $this->replace($value, $context);
            }
        }

        if (isset($options['remove_empty']) && $options['remove_empty']) {
            $data = $this->removeDataEmpty($data);
        }

        return $data;
    }
}