Sid Gifari From Gifari Industries - BD Cyber Security Team
Home
/
home
/
drleilu
/
www
/
wp-content
/
plugins
/
redux-framework
/
redux-core
/
inc
/
extensions
/
datetime
/
✏️
Editing: class-redux-extension-datetime.php
<?php /** * Redux Date/Time Extension Class * * @package Redux * @author Kevin Provance <kevin.provance@gmail.com> * @class Redux_Extension_Datetime * * @version 4.3.15 * * @noinspection PhpHierarchyChecksInspection * @noinspection PhpDocFinalChecksInspection */ defined( 'ABSPATH' ) || exit; // Don't duplicate me! if ( ! class_exists( 'Redux_Extension_Datetime', false ) ) { /** * Class Redux_Extension_Datetime */ class Redux_Extension_Datetime extends Redux_Extension_Abstract { /** * Extension version. * * @var string */ public static $version = '4.3.15'; /** * Extension friendly name. * * @var string */ public string $extension_name = 'Date/Time'; /** * Redux_Extension_Datetime constructor. * * @param ReduxFramework $redux ReduxFramework pointer. */ public function __construct( $redux ) { parent::__construct( $redux, __FILE__ ); $this->add_field( 'datetime' ); } } }
💾 Save
❌ Cancel