ru-se.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

class-kirki-field-generic.php (452B)


      1 <?php
      2 /**
      3  * Override field methods
      4  *
      5  * @package     Kirki
      6  * @subpackage  Controls
      7  * @copyright   Copyright (c) 2016, Aristeides Stathopoulos
      8  * @license     http://opensource.org/licenses/https://opensource.org/licenses/MIT
      9  * @since       2.3.2
     10  */
     11 
     12 if ( ! class_exists( 'Kirki_Field_Generic' ) ) {
     13 
     14 	/**
     15 	 * This is simply an alias for the Kirki_Field_Kirki_Generic class.
     16 	 */
     17 	class Kirki_Field_Generic extends Kirki_Field_Kirki_Generic {}
     18 
     19 }