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; } } }