🚀 Hostinger Optimized
🖥️ Server: Apache
💻 System: Linux webm015.cluster127.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
👤 User: stakrfrcol (69043)
🐘 PHP: 8.3.31
🚫 Disabled: _dyuweyrj4,_dyuweyrj4r,dl

💻 Terminal

📁 /home/stakrfrcol/agency
$

📄 class-kirki-output-property.php

📁 Path: ./wp-content/themes/xhyre/includes/kirki/modules/css/property/class-kirki-output-property.php
📊 Size: 1 KB
🔒 Perm: 0644
📝 MIME: text/x-php
<?php
/**
 * Handles CSS properties.
 * Extend this class in order to handle exceptions.
 *
 * @package	 Kirki
 * @subpackage  Controls
 * @copyright   Copyright (c) 2020, David Vongries
 * @license	 https://opensource.org/licenses/MIT
 * @since	   2.2.0
 */
/**
 * Output for CSS properties.
 */
class Kirki_Output_Property {
	/**
	 * The property we're modifying.
	 *
	 * @access protected
	 * @var string
	 */
	protected $property;
	/**
	 * The value
	 *
	 * @access protected
	 * @var string|array
	 */
	protected $value;
	/**
	 * Constructor.
	 *
	 * @access public
	 * @param string $property The CSS property we're modifying.
	 * @param mixed  $value	The value.
	 */
	public function __construct( $property, $value ) {
		$this->property = $property;
		$this->value	= $value;
		$this->process_value();
	}
	/**
	 * Modifies the value.
	 *
	 * @access protected
	 */
	protected function process_value() {
	}
	/**
	 * Gets the value.
	 *
	 * @access protected
	 */
	public function get_value() {
		return $this->value;
	}
}
← Back📥 Raw✏️ Edit🔒 Chmod
✨ File Manager Magic ✨