File "class-redux-extension-repeater.php"

Full Path: /home/elegucvf/public_html/video/wp-content/plugins/atlas-core/framework/redux-core/inc/extensions/repeater/class-redux-extension-repeater.php
File size: 1.02 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Redux Repeater Extension Class
 *
 * @package Redux
 * @author  Dovy Paukstys & Kevin Provance <kevin.provance@gmail.com>
 * @class   Redux_Extension_Repeater
 *
 * @version 4.3.13
 */

defined( 'ABSPATH' ) || exit;

// Don't duplicate me!
if ( ! class_exists( 'Redux_Extension_Repeater' ) ) {


	/**
	 * Class Redux_Extension_Repeater
	 */
	class Redux_Extension_Repeater extends Redux_Extension_Abstract {

		/**
		 * Extension version.
		 *
		 * @var string
		 */
		public static $version = '4.3.13';

		/**
		 * Extension friendly name.
		 *
		 * @var string
		 */
		public $extension_name = 'Repeater';

		/**
		 * Class Constructor. Defines the args for the extensions class
		 *
		 * @since       1.0.0
		 * @access      public
		 *
		 * @param       object $redux Parent settings.
		 *
		 * @return      void
		 */
		public function __construct( $redux ) {
			parent::__construct( $redux, __FILE__ );

			$this->add_field( 'repeater' );
		}
	}
}

class_alias( 'Redux_Extension_Repeater', 'ReduxFramework_Extension_repeater' );