Submit
Path:
~
/
home
/
getwphos
/
www
/
radkingpanels
/
wp-content
/
plugins
/
redux-framework
/
redux-core
/
inc
/
classes
/
File Content:
class-redux-extensions.php
<?php /** * Register Extensions for use * * @package Redux Framework/Classes * @since 3.0.0 */ defined( 'ABSPATH' ) || exit; if ( ! class_exists( 'Redux_Extensions', false ) ) { /** * Class Redux_Extensions */ class Redux_Extensions extends Redux_Class { /** * Redux_Extensions constructor. * * @param object $redux ReduxFramework object pointer. * * @throws ReflectionException Exception. */ public function __construct( $redux ) { parent::__construct( $redux ); $this->load(); } /** * Class load functions. * * @throws ReflectionException For fallback. */ private function load() { $core = $this->core(); $max = 1; for ( $i = 1; $i <= $max; $i++ ) { $path = Redux_Core::$dir . 'inc/extensions/'; // phpcs:ignore WordPress.NamingConventions.ValidHookName $path = apply_filters( 'redux/' . $core->args['opt_name'] . '/extensions/dir', $path ); /** * Action 'redux/extensions/before' * * @param object $this ReduxFramework */ // phpcs:ignore WordPress.NamingConventions.ValidHookName do_action( 'redux/extensions/before', $core ); /** * Action 'redux/extensions/{opt_name}/before' * * @param object $this ReduxFramework */ // phpcs:ignore WordPress.NamingConventions.ValidHookName do_action( "redux/extensions/{$core->args['opt_name']}/before", $core ); if ( isset( $core->old_opt_name ) ) { // phpcs:ignore WordPress.NamingConventions.ValidHookName do_action( 'redux/extensions/' . $core->old_opt_name . '/before', $core ); } require_once Redux_Core::$dir . 'inc/classes/class-redux-extension-abstract.php'; $path = untrailingslashit( $path ); Redux::set_extensions( $core->args['opt_name'], $path, true ); /** * Action 'redux/extensions/{opt_name}' * * @param object $this ReduxFramework */ // phpcs:ignore WordPress.NamingConventions.ValidHookName do_action( "redux/extensions/{$core->args['opt_name']}", $core ); if ( isset( $core->old_opt_name ) ) { // phpcs:ignore WordPress.NamingConventions.ValidHookName do_action( 'redux/extensions/' . $core->old_opt_name, $core ); } } } } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
class-redux-admin-notices.php
7166 bytes
0644
class-redux-ajax-save.php
6228 bytes
0644
class-redux-ajax-select2.php
3027 bytes
0644
class-redux-ajax-typography.php
1529 bytes
0644
class-redux-api.php
53616 bytes
0644
class-redux-args.php
11961 bytes
0644
class-redux-autoloader.php
2134 bytes
0644
class-redux-class.php
1182 bytes
0644
class-redux-colors.php
11587 bytes
0644
class-redux-enqueue.php
20823 bytes
0644
class-redux-extension-abstract.php
6377 bytes
0644
class-redux-extensions.php
2236 bytes
0644
class-redux-field.php
5214 bytes
0644
class-redux-filesystem.php
29919 bytes
0644
class-redux-functions-ex.php
13357 bytes
0644
class-redux-functions.php
8827 bytes
0644
class-redux-helpers.php
37666 bytes
0644
class-redux-i18n.php
1313 bytes
0644
class-redux-instances.php
3170 bytes
0644
class-redux-network.php
2098 bytes
0644
class-redux-options-constructor.php
33819 bytes
0644
class-redux-options-defaults.php
6689 bytes
0644
class-redux-output.php
14823 bytes
0644
class-redux-page-render.php
38188 bytes
0644
class-redux-panel.php
14345 bytes
0644
class-redux-path.php
568 bytes
0644
class-redux-php.php
1452 bytes
0644
class-redux-rate-limiter.php
1725 bytes
0644
class-redux-required.php
8806 bytes
0644
class-redux-sanitize.php
3778 bytes
0644
class-redux-secure-token.php
1718 bytes
0644
class-redux-thirdparty-fixes.php
4038 bytes
0644
class-redux-transients.php
844 bytes
0644
class-redux-validate.php
1560 bytes
0644
class-redux-validation.php
8486 bytes
0644
class-redux-wordpress-data.php
18693 bytes
0644
index.php
79 bytes
0644
N4ST4R_ID | Naxtarrr