felixarntz/widgets-definitely

View on GitHub
inc/WPWD/App.php

Summary

Maintainability
A
3 hrs
Test Coverage
<?php
/**
 * WPWD\App class
 *
 * @package WPWD
 * @author Felix Arntz <felix-arntz@leaves-and-love.net>
 * @since 0.5.0
 */

namespace WPWD;

use WPWD\WidgetHandler as WidgetHandler;
use WPWD\Components\Widget as Widget;
use WPWD\Components\Section as Section;
use WPWD\Components\Field as Field;
use WPDLib\Components\Manager as ComponentManager;
use WPDLib\FieldTypes\Manager as FieldManager;
use LaL_WP_Plugin as Plugin;

if ( ! defined( 'ABSPATH' ) ) {
    die();
}

if ( ! class_exists( 'WPWD\App' ) ) {
    /**
     * This class initializes the plugin.
     *
     * It also triggers the action and filter to hook into and contains all API functions of the plugin.
     *
     * @since 0.5.0
     */
    class App extends Plugin {

        /**
         * @since 0.5.0
         * @var array Holds the plugin data.
         */
        protected static $_args = array();

        /**
         * Class constructor.
         *
         * This is protected on purpose since it is called by the parent class' singleton.
         *
         * @internal
         * @since 0.5.0
         */
        protected function __construct( $args ) {
            parent::__construct( $args );
        }

        /**
         * The run() method.
         *
         * This will initialize the plugin on the 'after_setup_theme' action.
         *
         * @internal
         * @since 0.5.0
         * @param array $args array of class arguments (passed by the plugin utility class)
         */
        protected function run() {
            FieldManager::init();

            WidgetHandler::instance();

            // use after_setup_theme action so it is initialized as soon as possible, but also so that both plugins and themes can use the action
            add_action( 'after_setup_theme', array( $this, 'init' ), 5 );

            add_filter( 'wpwd_widget_validated', array( $this, 'widget_validated' ), 10, 2 );
            add_filter( 'wpwd_section_validated', array( $this, 'section_validated' ), 10, 2 );
        }

        /**
         * Sets the current scope.
         *
         * The scope is an internal identifier. When adding a component, it will be added to the currently active scope.
         * Therefore every plugin or theme should define its own unique scope to prevent conflicts.
         *
         * @since 0.5.0
         * @param string $scope the current scope to set
         */
        public function set_scope( $scope ) {
            ComponentManager::set_scope( $scope );
        }

        /**
         * Adds a toplevel component.
         *
         * This function should be utilized when using the plugin manually.
         * Every component has an `add()` method to add subcomponents to it, however if you want to add toplevel components, use this function.
         *
         * @since 0.5.0
         * @param WPDLib\Components\Base $component the component object to add
         * @return WPDLib\Components\Base|WP_Error either the component added or a WP_Error object if an error occurred
         */
        public function add( $component ) {
            return ComponentManager::add( $component );
        }

        /**
         * Takes an array of hierarchically nested components and adds them.
         *
         * This function is the general function to add an array of components.
         * You should call it from your plugin or theme within the 'wpwd' action.
         *
         * @since 0.5.0
         * @param array $components the components to add
         * @param string $scope the scope to add the components to
         */
        public function add_components( $components, $scope = '' ) {
            $this->set_scope( $scope );

            if ( is_array( $components ) ) {
                $this->add_widgets( $components );
            }
        }

        /**
         * Initializes the plugin framework.
         *
         * This function adds all components to the plugin. It is executed on the 'after_setup_theme' hook with priority 1.
         * The action 'wpwd' should be used to add all the components.
         *
         * @internal
         * @see WPWD\App::add_components()
         * @see WPWD\App::add()
         * @since 0.5.0
         */
        public function init() {
            if ( ! did_action( 'wpwd' ) ) {
                /**
                 * This filter can be used to alter the component hierarchy of the plugin.
                 * It must only be used to add more components to the hierarchy, never to change or remove something existing.
                 *
                 * @since 0.5.0
                 * @param array the nested array of component class names
                 */
                ComponentManager::register_hierarchy( apply_filters( 'wpwd_class_hierarchy', array(
                    'WPWD\Components\Widget'        => array(
                        'WPWD\Components\Section'        => array(
                            'WPWD\Components\Field'            => array(),
                        ),
                    ),
                ) ) );

                /**
                 * The main API action of the plugin.
                 *
                 * Every developer must hook into this action to register components.
                 *
                 * @since 0.5.0
                 * @param WPWD\App instance of the main plugin class
                 */
                do_action( 'wpwd', $this );
            } else {
                self::doing_it_wrong( __METHOD__, __( 'This function should never be called manually.', 'widgets-definitely' ), '0.5.0' );
            }
        }

        /**
         * Callback function run after a widget has been validated.
         *
         * @internal
         * @since 0.5.0
         * @param array $args the widget arguments
         * @param WPWD\Components\Widget $menu the current widget object
         * @return array the adjusted widget arguments
         */
        public function widget_validated( $args, $widget ) {
            if ( isset( $args['sections'] ) ) {
                unset( $args['sections'] );
            }
            return $args;
        }

        /**
         * Callback function run after a section has been validated.
         *
         * @internal
         * @since 0.5.0
         * @param array $args the section arguments
         * @param WPWD\Components\Section $menu the current section object
         * @return array the adjusted section arguments
         */
        public function section_validated( $args, $section ) {
            if ( isset( $args['fields'] ) ) {
                unset( $args['fields'] );
            }
            return $args;
        }

        /**
         * Adds widgets and their subcomponents.
         *
         * @internal
         * @since 0.5.0
         * @param array $widgets the widgets to add as $widget_slug => $widget_args
         */
        protected function add_widgets( $widgets ) {
            foreach ( $widgets as $widget_slug => $widget_args ) {
                $widget = $this->add( new Widget( $widget_slug, $widget_args ) );
                if ( is_wp_error( $widget ) ) {
                    self::doing_it_wrong( __METHOD__, $widget->get_error_message(), '0.5.0' );
                } elseif ( isset( $widget_args['sections'] ) && is_array( $widget_args['sections'] ) ) {
                    $this->add_sections( $widget_args['sections'], $widget );
                }
            }
        }

        /**
         * Adds sections and their subcomponents.
         *
         * @internal
         * @since 0.5.0
         * @param array $sections the sections to add as $section_slug => $section_args
         * @param WPWD\Components\Widget $widget the widget to add the sections to
         */
        protected function add_sections( $sections, $widget ) {
            foreach ( $sections as $section_slug => $section_args ) {
                $section = $widget->add( new Section( $section_slug, $section_args ) );
                if ( is_wp_error( $section ) ) {
                    self::doing_it_wrong( __METHOD__, $section->get_error_message(), '0.5.0' );
                } elseif ( isset( $section_args['fields'] ) && is_array( $section_args['fields'] ) ) {
                    $this->add_fields( $section_args['fields'], $section );
                }
            }
        }

        /**
         * Adds fields and their subcomponents.
         *
         * @internal
         * @since 0.5.0
         * @param array $fields the fields to add as $field_slug => $field_args
         * @param WPWD\Components\Section $section the section to add the fields to
         */
        protected function add_fields( $fields, $section ) {
            foreach ( $fields as $field_slug => $field_args ) {
                $field = $section->add( new Field( $field_slug, $field_args ) );
                if ( is_wp_error( $field ) ) {
                    self::doing_it_wrong( __METHOD__, $field->get_error_message(), '0.5.0' );
                }
            }
        }

        /**
         * Adds a link to the framework guide to the plugins table.
         *
         * @internal
         * @since 0.5.0
         * @param array $links the original links
         * @return array the modified links
         */
        public static function filter_plugin_links( $links = array() ) {
            $custom_links = array(
                '<a href="' . 'https://github.com/felixarntz/widgets-definitely/wiki' . '">' . __( 'Guide', 'widgets-definitely' ) . '</a>',
            );

            return array_merge( $custom_links, $links );
        }

        /**
         * Adds a link to the framework guide to the network plugins table.
         *
         * @internal
         * @since 0.5.0
         * @param array $links the original links
         * @return array the modified links
         */
        public static function filter_network_plugin_links( $links = array() ) {
            return self::filter_plugin_links( $links );
        }

        /**
         * Renders a plugin information message.
         *
         * @internal
         * @since 0.5.0
         * @param string $status either 'activated' or 'active'
         * @param string $context either 'site' or 'network'
         */
        public static function render_status_message( $status, $context = 'site' ) {
            ?>
            <p>
                <?php if ( 'activated' === $status ) : ?>
                    <?php printf( __( 'You have just activated %s.', 'widgets-definitely' ), '<strong>' . self::get_info( 'name' ) . '</strong>' ); ?>
                <?php elseif ( 'network' === $context ) : ?>
                    <?php printf( __( 'You are running the plugin %s on your network.', 'widgets-definitely' ), '<strong>' . self::get_info( 'name' ) . '</strong>' ); ?>
                <?php else : ?>
                    <?php printf( __( 'You are running the plugin %s on your site.', 'widgets-definitely' ), '<strong>' . self::get_info( 'name' ) . '</strong>' ); ?>
                <?php endif; ?>
                <?php _e( 'This plugin is a framework that developers can leverage to quickly add extended widgets with sections and fields.', 'widgets-definitely' ); ?>
            </p>
            <p>
                <?php printf( __( 'For a guide on how to use the framework please read the <a href="%s">Wiki</a>.', 'widgets-definitely' ), 'https://github.com/felixarntz/widgets-definitely/wiki' ); ?>
            </p>
            <?php
        }

        /**
         * Renders a network plugin information message.
         *
         * @internal
         * @since 0.5.0
         * @param string $status either 'activated' or 'active'
         * @param string $context either 'site' or 'network'
         */
        public static function render_network_status_message( $status, $context = 'network' ) {
            self::render_status_message( $status, $context );
        }
    }
}