芝麻web文件管理V1.00
编辑当前文件:/home/dcqnetm/icbs-global/wp-content/plugins/cf7-to-zapier/cf7-to-zapier.php
include_file(); $this->define_hooks(); $this->add_modules(); } /** * Define things to run when activate plugin * * @since 1.0.0 */ public function on_activation() { flush_rewrite_rules(); } /** * Register the hooks for Core * * @since 1.0.0 * @access private */ private function define_hooks() { // Internationalization $this->add_action( 'plugins_loaded', array( $this, 'load_plugin_textdomain' ) ); // Activation Hook register_activation_hook( __FILE__, array( $this, 'on_activation' ) ); } /** * Load all the plugins modules. * * @since 1.0.0 * @access private */ private function add_modules() { // Require module files: require_once plugin_dir_path( __FILE__ ) . 'modules/cf7/class-module-cf7.php'; require_once plugin_dir_path( __FILE__ ) . 'modules/zapier/class-module-zapier.php'; // Instantiate the Module's classes: $this->modules['cf7'] = new CFTZ_Module_CF7( $this ); $this->modules['zapier'] = new CFTZ_Module_Zapier( $this ); } /** * Load the core functions file * * @since 1.0.0 * @access private */ private function include_file() { require_once plugin_dir_path( __FILE__ ) . 'includes/functions-debug.php'; require_once plugin_dir_path( __FILE__ ) . 'includes/functions-admin.php'; require_once plugin_dir_path( __FILE__ ) . 'includes/class-exception.php'; } /** * A utility function that is used to register the actions and hooks into a single * collection. * * @since 1.0.0 * @access private * @param array $hooks The collection of hooks that is being registered (that is, actions or filters). * @param string $hook The name of the WordPress filter that is being registered. * @param string $callback The callback function or a array( $obj, 'method' ) to public method of a class. * @param int $priority The priority at which the function should be fired. * @param int $accepted_args The number of arguments that should be passed to the $callback. * @return array The collection of actions and filters registered with WordPress. */ private function add_hook( $hooks, $hook, $callback, $priority, $accepted_args ) { $hooks[] = array( 'hook' => $hook, 'callback' => $callback, 'priority' => $priority, 'accepted_args' => $accepted_args ); return $hooks; } /** * Add a new action to the collection to be registered with WordPress. * * @since 1.0.0 * @param string $hook The name of the WordPress action that is being registered. * @param string $callback The callback function or a array( $obj, 'method' ) to public method of a class. * @param int $priority Optional. he priority at which the function should be fired. Default is 10. * @param int $accepted_args Optional. The number of arguments that should be passed to the $callback. Default is 1. */ public function add_action( $hook, $callback, $priority = 10, $accepted_args = 1 ) { $this->actions = $this->add_hook( $this->actions, $hook, $callback, $priority, $accepted_args ); } /** * Add a new filter to the collection to be registered with WordPress. * * @since 1.0.0 * @param string $hook The name of the WordPress filter that is being registered. * @param string $callback The callback function or a array( $obj, 'method' ) to public method of a class. * @param int $priority Optional. he priority at which the function should be fired. Default is 10. * @param int $accepted_args Optional. The number of arguments that should be passed to the $callback. Default is 1 */ public function add_filter( $hook, $callback, $priority = 10, $accepted_args = 1 ) { $this->filters = $this->add_hook( $this->filters, $hook, $callback, $priority, $accepted_args ); } /** * Define the locale for this plugin for internationalization. * * * @since 1.0.0 * @access private */ public function load_plugin_textdomain() { load_plugin_textdomain( 'cf7-to-zapier', false, basename( dirname( __FILE__ ) ) . '/languages' ); } /** * Run the plugin. * * @since 1.0.0 */ public function run() { // Definitions to plugin define( 'CFTZ_VERSION', '4.0.3' ); define( 'CFTZ_PLUGIN_FILE', __FILE__ ); define( 'CFTZ_PLUGIN_BASENAME', plugin_basename( __FILE__ ) ); define( 'CFTZ_PLUGIN_PATH', WP_PLUGIN_DIR . '/' . dirname( CFTZ_PLUGIN_BASENAME ) ); define( 'CFTZ_PLUGIN_DIR', dirname( CFTZ_PLUGIN_BASENAME ) ); define( 'CFTZ_PLUGIN_URL', plugins_url( '', __FILE__ ) ); // Definition of upload_dir if ( ! defined( 'CFTZ_UPLOAD_DIR' ) ) { define( 'CFTZ_UPLOAD_DIR', 'cf7-to-webhook-uploads' ); } // Running Modules (first of all) foreach ( $this->modules as $module ) { $module->run(); } // Running Filters foreach ( $this->filters as $hook ) { add_filter( $hook['hook'], $hook['callback'], $hook['priority'], $hook['accepted_args'] ); } // Running Actions foreach ( $this->actions as $hook ) { add_action( $hook['hook'], $hook['callback'], $hook['priority'], $hook['accepted_args'] ); } } } } /** * Making things happening */ $ctz_core = new Cf7_To_Zapier(); $ctz_core->run();