wpfulcrum / fulcrum
Fulcrum - The central custom repository for WordPress.
Requires
- php: ^5.6|^7
- pimple/pimple: ^3.2
Requires (Dev)
- brain/monkey: ^2.0
- mockery/mockery: ~0.9
- phpunit/phpunit: ~4.8|~5.7.9
- sensiolabs/security-checker: ^4.0
- squizlabs/php_codesniffer: ^3.0
Replaces
- wpfulcrum/config: 3.0.5
- wpfulcrum/container: 3.0.5
- wpfulcrum/extender: 3.0.5
- wpfulcrum/foundation: 3.0.5
- wpfulcrum/post-type: 3.0.5
- wpfulcrum/shortcode: 3.0.5
- wpfulcrum/taxonomy: 3.0.5
- wpfulcrum/template: 3.0.5
- wpfulcrum/widget: 3.0.5
This package is not auto-updated.
Last update: 2024-11-01 23:37:10 UTC
README
Fulcrum - The customization central repository to extend and custom WordPress. This plugin provides the centralized infrastructure for the custom plugins and theme.
The Why of Customization Central
This plugin provides a central location for all redundant functionality. It keeps your plugins and theme DRY, reusable, and modular. It is meant to be extended. Therefore, when you need a feature-specific plugin like a Portfolio, Testimonials, or FAQ, you extend the Fulcrum\Addon\Addon
class in your plugin. Then you configure what service providers you need.
Did you read that last part? It's configuration over code, meaning you configure what you want! (Did you get a tingle?)
Bottom Line: It saves you a ton of time and code in your plugins, which saves you moola.
Features
This plugin is fully crafted in OOP. It utilizes DI Container, Dependency Injection, Polymorphism, Inheritance, etc. It shows you how to build OOP-capable plugins.
It also uses:
- Composer and its autoload functionality in place of filling a function with includes and requires.
- Gulp as it's task runner
- Config files, which abstract the runtime configuration out of the modules and into
fulcrum/config
folder where they belong. - Service Providers for the Addons to utilize, which simply the need-to-know in the addons. Configure and fire them up.
Includes:
- Pimple - as the DI Container
- Shortcodes
- Meta boxes
- Custom Post Types
- Custom Taxonomy
- Widgets
Some Cool Packages
Fulcrum includes some cool packages to make your job more fun.
- Kint - a modern and powerful PHP debugging helper
- Whoops - PHP Errors for Cook Kids
- Carbon - A simple PHP API extension for DateTime.
- Pimple - as the DI Container
Installation
Installation from GitHub is as simple as cloning the repo onto your local machine. Typically, I put Fulcrum as a must use plugin. Why? Because the child theme and all custom plugins extend off of it. Therefore, you want it to always be activated.
To install it as a must use, here's what you want to do:
- Open your project and navigate to
wp-content/mu-plugins
. - Then open terminal (or console).
- Then type:
git clone https://github.com/hellfromtonya/Fulcrum.git fulcrum
. - Change the directory by typing:
cd fulcrum
. - Next, run Composer to install all of the assets. Type
composer install
at the root of the Fulcrum folder. - Next, add an auto-launcher to load Fulcrum. If one exists already, then add
require __DIR__ . '/fulcrum/bootstrap.php';
into it. Otherwise, do the following:- Navigate to
fulcrum/mu-loader/
and copy themu-autoloader.php
file. - Paste it into the root of
wp-content/mu-plugins
. - Bam, Fulcrum now loads itself up without you or your client needing to activate it. WooHoo!
- Navigate to
Contributing
All feedback, bug reports, and pull requests are welcome.