????JFIF??x?x????'
Server IP : 104.21.96.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/buyeaa.com/wp-content/plugins/redux-framework/redux-core/inc/lib/ |
Upload File : |
<?php /** * Redux_Instances Functions * * @package Redux_Framework * @subpackage Core * @deprecated Maintained for backward compatibility with v3. */ /** * Retrieve an instance of ReduxFramework * * @depreciated * * @param string $opt_name the defined opt_name as passed in $args. * * @return ReduxFramework ReduxFramework */ function get_redux_instance( string $opt_name ): ReduxFramework { _deprecated_function( __FUNCTION__, '4.0', 'Redux::instance($opt_name)' ); return Redux::instance( $opt_name ); } /** * Retrieve all instances of ReduxFramework * as an associative array. * * @depreciated * @return array format ['opt_name' => $ReduxFramework] */ function get_all_redux_instances(): array { _deprecated_function( __FUNCTION__, '4.0', 'Redux::all_instances()' ); return Redux::all_instances(); }