Sid Gifari File Manager
🏠 Root
/
home
/
nradmin
/
public_html
/
wp-content
/
themes
/
flatsome
/
inc
/
admin
/
kirki
/
modules
/
css
/
property
/
📝 Editing: class-kirki-output-property.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; } }
💾 Save
❌ Cancel
Sid Gifari File Manager v1.0 | Terminal Auto-Sync Enabled | Current Path: /home/nradmin/public_html/wp-content/themes/flatsome/inc/admin/kirki/modules/css/property