File manager - Edit - /home/xfekoga/grenier/wp-content/plugins/redux-framework/redux-core/inc/classes/class-redux-class.php
Back
<?php /** * Redux Class * * @class Redux_Class * @version 4.0.0 * @package Redux Framework/Classes */ defined( 'ABSPATH' ) || exit; if ( ! class_exists( 'Redux_Class', false ) ) { /** * Class Redux_Class */ class Redux_Class { /** * Pointer to ReduxFramework object. * * @var null|ReduxFramework */ public ?ReduxFramework $parent = null; /** * Global arguments array. * * @var array|mixed|void */ public $args = array(); /** * Project opt_name * * @var mixed|string */ public $opt_name = ''; /** * Redux_Class constructor. * * @param ReduxFramework|null $redux Pointer to ReduxFramework object. */ public function __construct( ?ReduxFramework $redux = null ) { if ( is_object( $redux ) ) { $this->parent = $redux; $this->args = $redux->args; $this->opt_name = $this->args['opt_name']; } } /** * Pointer to a project-specific ReduxFramework object. * * @return null|object|ReduxFramework */ public function core() { if ( isset( $this->opt_name ) && '' !== $this->opt_name ) { return Redux::instance( $this->opt_name ); } return null; } } }
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings