diff --git a/utilities/class-file-util.php b/utilities/class-file-util.php index 8a2f3d8..f276644 100644 --- a/utilities/class-file-util.php +++ b/utilities/class-file-util.php @@ -50,15 +50,15 @@ public static function empty_dir( $dir ) { } /** - * Load components. + * Load modules. * * @param string $dir The directory path. - * @param integer $max_depth Maximum depth to load the components. + * @param integer $max_depth Maximum depth to load the modules. * @return void */ - public static function load_components( $dir, $max_depth = 1 ) { + public static function load_modules( $dir, $max_depth = 1 ) { $object = new File_Helper(); - $object->load_components( $dir, $max_depth ); + $object->load_modules( $dir, $max_depth ); } /** diff --git a/wp-functions-wrapper.php b/wp-functions-wrapper.php index 568639c..57323af 100644 --- a/wp-functions-wrapper.php +++ b/wp-functions-wrapper.php @@ -3,7 +3,7 @@ * Plugin Name: WordPress Functions Wrapper * Plugin URI: https://github.com/contactjavas/wp-functions-wrapper * Description: WordPress functions wrapper for faster & simpler development. - * Version: 0.1.0 + * Version: 0.1.1 * Author: Bagus * Author URI: https://kembangweb.com/ * License: MIT @@ -18,7 +18,7 @@ load_plugin_textdomain( 'wpfw', false, __DIR__ . '/languages' ); // identities constants. -define( 'WPFW_PLUGIN_VERSION', '0.1.0' ); +define( 'WPFW_PLUGIN_VERSION', '0.1.1' ); define( 'WPFW_PLUGIN_URL', rtrim( plugin_dir_url( __FILE__ ), '/' ) ); define( 'WPFW_PLUGIN_DIR', rtrim( plugin_dir_path( __FILE__ ), '/' ) );