khaihihi
This commit is contained in:
26
wp-content/plugins/keydesign-addon/keydesign-extensions.php
Normal file
26
wp-content/plugins/keydesign-addon/keydesign-extensions.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
if(!function_exists('keydesign_redux_register_custom_extension_loader')) :
|
||||
function keydesign_redux_register_custom_extension_loader($ReduxFramework) {
|
||||
$path = dirname( __FILE__ ) . '/extensions/';
|
||||
$folders = scandir( $path, 1 );
|
||||
foreach ( $folders as $folder ) {
|
||||
if ( $folder === '.' or $folder === '..' or ! is_dir( $path . $folder ) ) {
|
||||
continue;
|
||||
}
|
||||
$extension_class = 'ReduxFramework_Extension_' . $folder;
|
||||
if ( ! class_exists( $extension_class ) ) {
|
||||
// In case you wanted override your override, hah.
|
||||
$class_file = $path . $folder . '/extension_' . $folder . '.php';
|
||||
$class_file = apply_filters( 'redux/extension/' . $ReduxFramework->args['opt_name'] . '/' . $folder, $class_file );
|
||||
if ( $class_file ) {
|
||||
require_once( $class_file );
|
||||
}
|
||||
}
|
||||
if ( ! isset( $ReduxFramework->extensions[ $folder ] ) ) {
|
||||
$ReduxFramework->extensions[ $folder ] = new $extension_class( $ReduxFramework );
|
||||
}
|
||||
}
|
||||
}
|
||||
add_action("redux/extensions/redux_ThemeTek/before", 'keydesign_redux_register_custom_extension_loader', 0);
|
||||
endif;
|
||||
Reference in New Issue
Block a user