PluginProbe ʕ •ᴥ•ʔ
Kirki – Freeform Page Builder, Website Builder & Customizer / 6.0.13
Kirki – Freeform Page Builder, Website Builder & Customizer v6.0.13
6.1.1 6.1.0 6.0.14 6.0.13 6.0.12 6.0.11 6.0.10 6.0.9 6.0.8 6.0.7 6.0.6 6.0.5 6.0.4 6.0.3 6.0.2 6.0.1 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.1.9 4.0.19 4.0.20 4.0.21 4.0.22 4.0.23 4.0.24 4.1 4.2.0 5.0.0 5.1.0 5.1.1 5.2.0 5.2.1 5.2.2 5.2.3 6.0.0 trunk 3.0.40 3.0.41 3.0.42 3.0.43 3.0.44 3.0.45 3.1.0 3.1.1 3.1.2
kirki / customizer / packages / compatibility / src / deprecated / classes.php
kirki / customizer / packages / compatibility / src / deprecated Last commit date
classes.php 1 month ago filters.php 2 months ago functions.php 5 months ago
classes.php
40 lines
1 <?php
2 // phpcs:ignoreFile
3
4 if ( ! defined( 'ABSPATH' ) ) {
5 exit;
6 }
7
8 if ( ! class_exists( 'Kirki_Active_Callback' ) ) {
9 // Removed in https://github.com/aristath/kirki/pull/1682/files
10 class Kirki_Active_Callback {
11 public static function evaluate() {
12 _deprecated_function( __METHOD__, '3.0.17', null );
13 return true;
14 }
15 private static function evaluate_requirement() {
16 _deprecated_function( __METHOD__, '3.0.17', null );
17 return true;
18 }
19 public static function compare( $value1, $value2, $operator ) {
20 _deprecated_function( __METHOD__, '3.0.17', 'Kirki_Helper::compare_values' );
21 return Kirki_Helper::compare_values( $value1, $value2, $operator );
22 }
23 }
24 }
25
26 /**
27 * Deprecated in v3.0.36
28 *
29 * Keeping it here in case a theme or plugin was using one of its public methods.
30 * This is just to avoid fatal errors, it does not do anything.
31 */
32 if ( ! class_exists( 'Kirki_CSS_To_File' ) ) {
33 class Kirki_CSS_To_File {
34 public function __construct() {}
35 public function get_url() {}
36 public function get_timestamp() {}
37 public function write_file() {}
38 }
39 }
40