mirror of
https://github.com/10h30/full-screen-morphing-search.git
synced 2026-07-18 14:03:20 +09:00
97d20e9a81
Version 2.0
65 lines
1.0 KiB
PHP
65 lines
1.0 KiB
PHP
<?php
|
|
/**
|
|
* Handles CSS properties.
|
|
* Extend this class in order to handle exceptions.
|
|
*
|
|
* @package Kirki
|
|
* @subpackage Controls
|
|
* @copyright Copyright (c) 2017, Aristeides Stathopoulos
|
|
* @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;
|
|
}
|
|
}
|