bluehost / endurance-wp-module-loader

This loader instantiates Endurance WordPress Modules inside our WordPress Plugins. NO LONGER IN USE.

Home Page:https://github.com/newfold-labs/wp-module-loader

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Endurance Logo

WordPress Module Loader

Version Number License

This loader instantiates Endurance WordPress Modules inside our WordPress Plugins.

Endurance WordPress Modules

Endurance WordPress Modules are PHP packages intended to be installed in WordPress Plugins via composer from our satis registry.

They were first used in the Mojo Marketplace WordPress Plugin and later the Bluehost WordPress Plugin.

Modules essentially function as WordPress Plugins we can reuse in Endurance products and control programatically.

Modules can be required/forced, optional, hidden and can be toggled by code and (sometimes) by users.

Creating & Registering a Module

Modules will eventually be created from templates, but for now here are some key things to know.

  • Modules should contain a bootstrap.php file that should get autoloaded by Composer. Functionality should load from /inc.
  • Modules are loaded on the init hook with a priority of 10.
  • Module registration should tap the after_setup_theme hook.
  • In mojoness/mojo-marketplace-wp-plugin two constants exist for tapping the Plugin's path and base URL: MM_BASE_DIR and MM_BASE_URL. Modules are in /vendor.
  • In bluehost/bluehost-wordpress-plugin the equivalents are BLUEHOST_PLUGIN_DIR and BLUEHOST_PLUGIN_URL. Modules are in /vendor.

eig_register_module()

This global function should be run during after_theme_setup.

/**
 * @param array $args
 *
 * $args = array(
 *     'name'     => (string) **required** slug used for internal reference, like a CPT.
 *     'label     => (string) **required** i18n display label
 *     'callback' => (callable) **required** executed when module is active
 *     'isActive' => (boolean) **optional, default: false** whether module is forced active by default (can be overriden if !isHidden)
 *     'isHidden' => (boolean) **optional, default: false** whether module can be toggled in UI.
 * )
 */
eig_register_module( $args );

Example bootstrap.php:

<?php

if ( function_exists( 'add_action' ) ) {
	add_action( 'after_setup_theme', 'eig_module_spam_prevention_register' );
}

/**
 * Register the spam prevention module
 */
function eig_module_spam_prevention_register() {
	eig_register_module( array(
		'name'     => 'spam-prevention',
		'label'    => __( 'Spam Prevention', 'endurance' ),
		'callback' => 'eig_module_spam_prevention_load',
		'isActive' => true,
	) );
}

/**
 * Load the spam prevention module
 */
function eig_module_spam_prevention_load() {
	require dirname( __FILE__ ) . '/spam-prevention.php';
}

Installing from our Satis

Our modules are sourced from our 3rd-party package repository (Satis).

1. Make sure to register our repository in the composer.json

Via command line: composer config repositories.bluehost composer https://bluehost.github.io/satis

OR

{
  "repositories": [
    {
      "type": "composer",
      "url": "https://bluehost.github.io/satis/",
      "only": [
        "bluehost/*",
        "mojoness/*",
        "endurance/*"
      ]
    }
  ]
}

2. composer require [satis-package-identifier]

3. composer install

Local Development

When working on modules locally:

  1. Clone the module repository somewhere on the filesystem, i.e. /wp-content/modules/endurance-wp-module-awesome.
  2. Modify the sourcing-plugin's composer.json to reference that directory as a path in the repositories array (above the satis reference).
{
  "repositories": [
    {
      "type": "path",
      "url": "../../modules/endurance-wp-module-awesome",
      "options": {
        "symlink": true
      }
    },
    {
      "type": "composer",
      "url": "https://bluehost.github.io/satis/",
      "only": [
        "bluehost/*",
        "mojoness/*",
        "endurance/*"
      ]
    }
  ]
}
  1. In the require declaration, change the version to @dev
  2. composer install

Understanding the module lifecycle

How It Works

  1. During plugin release, a composer install is run, creating autoloader files and pulling in composer dependencies -- which include EIG modules.
  2. A request is made to WordPress, firing Core hooks.
  3. The plugin containing modules is loaded during do_action('plugins_loaded'). WordPress loads plugins alphabetically.
  4. In the plugin, the composer autoloader is required and executes. This isn't attached to an action hook, but is effectively running during plugins_loaded.
  5. Each EIG module defines a bootstrap.php that is explicitly set to autoload, so when the main plugin's autoloader fires, each module's bootstrap.php is loaded -- again outside the hook cascade, but these files are effectively run during plugins_loaded.
  6. In the boostrap.php for each module, the module is registered with the module loader module using eig_register_module(). Most modules should be registered in do_action('after_theme_setup') and before the do_action('init') hook.
  7. In bluehost/endurance-wp-module-loader, the loader runs on do_action('after_theme_setup') with a priority of 100.
  8. Any code in a module that is instantiated via bootstrap.php can now access the WordPress Action Hook system, starting with init.

Hooks available to modules:

  • init (first available)
  • wp_loaded
  • admin_menu
  • admin_init
  • etc

Hooks not available to modules

  • plugins_loaded
  • set_current_user
  • setup_theme
  • after_theme_setup

About

This loader instantiates Endurance WordPress Modules inside our WordPress Plugins. NO LONGER IN USE.

https://github.com/newfold-labs/wp-module-loader

License:GNU General Public License v2.0


Languages

Language:PHP 100.0%