Download the PHP package dnaber/wp-provisioner without Composer
On this page you can find all versions of the php package dnaber/wp-provisioner. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download dnaber/wp-provisioner
More information about dnaber/wp-provisioner
Files in dnaber/wp-provisioner
Package wp-provisioner
Short Description Install and configure WordPress programmatic and continuable
License MIT
Informations about the package wp-provisioner
WP Provisioner
API to instantiate and manage your WordPress installation structure. Work in progress
Installation
What & why
Assuming you planning your next web project based on WordPress. The concept of this project requires 15 sites, managed by one WordPress multisite installation. Each site has its own language and a different set of settings and activated plugins and themes. You might want to set up at least a testing server and a production system. Further you have 3 colleagues working with you on this project.
Thus, you set up your local development system, create the 15 sites and make all the settings to the sites. Now you have three options to deploy these state of your system to your fellows or to the testing/production systems:
- Share database dumps. That might work for the initial setup but what happens, if the concept changes later?
- Documentation: write down every parameter of the concept and do it manually.
- Do it programmatic using WP Provisioner
How it works
WP Provisioner is a standalone PHP commandline script that executes a set of tasks defined in a separate PHP file. Right now it provides two commands to do this.
provision
This command executes the <VERSION>
defined in <PROVISION_FILE>
. By default, the provision file is the provision.php
in your current working directory.
Here's an example provision file that defines version 1.0.0
and installs a multisite, sets up two sites and activates two plugins:
task
The task file must return a callable that will be just executed with the parameters WpCliCommandProvider
and ConsoleOutput
. Example:
Goal
The idea of this tool is to automate the process of configuring WordPress as complete as possible to integrate it into already automated deployment processes. However, it is in a early alpha state. Some features are not implemented jet and the API might change slightly.
API
About the $graceful
parameter: Every create()
method has a boolean parameter called $graceful
(mostly the last one) which make the method act like create-if-not-exists, which is always the default behavior. If set ot FALSE
, the method will throw exceptions, if for example a site is created that already exists.
Wp\Core
Check if WordPress is installed.
Installs WordPress.
Converts a single-site to a multisite. Modifies your wp-config.php
(See issue #1)
Installs a multisite from scratch. Modifies your wp-config.php
(See issue #1)
Wp\Plugin
Activates a plugin.
Deactivates a plugin.
Checks, if a plugin is «installed». That means, if the plugin files are available for activation.
Checks, if a plugin is activated. Set $options[ 'network' ]
to TRUE
to check for network-wide activation.
Run uninstall routines for a plugin. This tries to deactivate the plugin before (unless you specify $options[ 'deactivate' ] = FALSE
). I suggest to manually deactivate the plugin depending on the plugin activation status. If you want to also delete the plugin files, pass $options[ 'delete' ] = TRUE
to the method.
Wp\Site
Checks if a site URL already exists.
Gets the site ID from the site URL.
Creates a new site by the complete URL. This works independent of whether it's a sub-directory or sub-domain install but sub-domain install is highly recommended. You can however omit the URL and create a site by slug, of course.
Parameter:
$url
the site's complete URL, e.g.http://ch.mysite.org/fr/
$attributes
$attributes[ 'user_email' ]
(string, required) the email address of the new sites admin (the user must already exist)$attributes[ 'private' ]
(boolean) whether the new site should be private$attribute[ 'title' ]
(string) the title of the new site.$attribute[ 'slug' ]
(string) when provided, the$url
parameter is ignored and the site gets created with this slug (which becomes either the sub-domain or the sub-directory)
$network_id
(int) the network ID the new site should created in. Default to0
which means that the current network (defined bywp-config.php
) is used$graceful
(boolean)TRUE
means »create site if not exists« (default) and return existing ID if exists,FALSE
will throw exception otherwise
Wp\User
Get the user ID by email or login.
Checks whether a user exists by a given email or login.
Creates a new user.
Parameter:
$login
(string, required) the new users login name$email
(string, required) the new users email address$attributes
$attributes[ 'role' ]
(string) the new users role (must exists in the given site)$attributes[ 'password' ]
(string) password in plain text (should be omitted, when using VCS, use password lost function)$attributes[ 'first_name' ]
(string)$attributes[ 'last_name' ]
(string)$attributes[ 'display_name' ]
(string)$attributes[ 'send_mail' ]
(bool) send a confirmation mail to the user (default toFALSE
)$attibutes[ 'registered_at' ]
(DateTimeInterface) the time the user was registered
$site_url
(string) The sites URL, the user should registered for. (Default to the networks main site)$graceful
(bool)TRUE
means »create user if not exists« (default) and return existing ID if exists,FALSE
will throw exception otherwise
All versions of wp-provisioner with dependencies
symfony/process Version ~2.1
inpsyde/wp-cli-site-url Version ~1.0
wp-cli/wp-cli Version ~0.23