%PDF- %PDF-
Direktori : /var/www/html/higroup/wp-content/plugins/evenex-essential/ |
Current File : /var/www/html/higroup/wp-content/plugins/evenex-essential/evenex-essential.php |
<?php /* * Plugin Name: Evenex Essentials * License - GNU/GPL V2 or Later * Description: This is a required plugin for Evenex theme. * Version: 1.1 * text domain: evenex-essential */ if ( ! defined( 'ABSPATH' ) ) { exit; } // Add language add_action( 'init', 'evenex_language_load' ); function evenex_language_load(){ $plugin_dir = basename(dirname(__FILE__))."/languages/"; load_plugin_textdomain( 'evenex-essential', false, $plugin_dir ); } // main class class Evenex_Essentials_Includes { // auto load // ---------------------------------------------------------------------------------------- public static function init() { self::_action_init(); add_action( 'widgets_init', array( __CLASS__, '_action_widgets_init' ) ); } // plugin version public static function version() { return '1.1'; } // directory name to class name, transform dynamically // ---------------------------------------------------------------------------------------- private static function dirname_to_classname( $dirname ) { $class_name = explode( '-', $dirname ); $class_name = array_map( 'ucfirst', $class_name ); $class_name = implode( '_', $class_name ); return $class_name; } // include and register widgets // ---------------------------------------------------------------------------------------- public static function include_widget( $widget_dir ) { $rel_path = '/widgets'; $path = self::get_path( $rel_path ) . '/' . $widget_dir; if ( file_exists( $path ) ) { self::include_isolated( $path . '/widget-class.php' ); } register_widget( 'EVENEX_' . self::dirname_to_classname( $widget_dir ) ); } // include method // ---------------------------------------------------------------------------------------- public static function include_isolated( $path ) { include $path; } // directory path for theme core // ---------------------------------------------------------------------------------------- private static function get_path( $append = '' ) { $path = plugin_dir_path( __FILE__ ) . 'includes'; return $path . $append; } // include widgets // ---------------------------------------------------------------------------------------- public static function _action_widgets_init() { self::include_widget('recent-event'); } // include files // ---------------------------------------------------------------------------------------- public static function _action_init() { self::include_isolated( self::get_path('/post-type/post-class.php') ); self::include_isolated( self::get_path('/helper.php') ); } } Evenex_Essentials_Includes::init(); include 'modules/init.php';