moderntribe / square1-blog-copier
Blog copier for square one
Installs: 1 433
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 21
Forks: 0
Open Issues: 0
Requires
- php: >=7.4
- moderntribe/square1-container: ^4.2
- moderntribe/square1-queues: ^4.2
- 4.x-dev
- 4.2.0
- dev-master / 4.1.x-dev
- 4.1.0
- 4.0.16
- 4.0.15
- 4.0.13
- 4.0.12
- 4.0.8
- 4.0.7
- 4.0.5
- 4.0.4
- 4.0.3
- 3.6.0
- 3.5.1
- 3.5.0
- 3.4.18
- 3.4.17
- 3.4.16
- 3.4.15
- 3.4.14
- 3.4.13
- 3.4.12
- 3.4.11
- 3.4.10
- 3.4.9
- 3.4.8
- 3.4.7
- 3.4.6
- v3.4.4
- v3.4.2
- v3.4.1
- v3.4.0
- v3.3.0
- v3.2.0
- v3.1.2
- v3.1.1
- v3.1.0
- v3.0.0
- 2.1.2
- v2.1.1
- v2.0.0
- 0.0.2
- 0.0.1
- dev-feature/monorepo
This package is auto-updated.
Last update: 2024-10-25 20:53:31 UTC
README
The blog copier is a WP Multisite tool to copy a template blog to a new blog. All content and settings will be copied from the source blog to the new blog.
Usage
Enable the blog copier by registering the Blog_Copier_Definer
and Blog_Copier_Subscriber
in the
core plugin. The lines to do so should already exist, conditionally loaded,
in \Tribe\Project\Core::extend_definers()
and \Tribe\Project\Core::extend_subscribers()
.
Once enabled, the blog copier can be accessed in the network admin, under the "Sites" menu.
Architecture
The blog copier depends on queues for processing. Initiating a copy adds a task to the queue to run the first step of the copy. As each step completes, it will add the next step to the queue.
The configuration for the copy is stored as JSON in the content of a hidden post on blog 1. This JSON is a
representation of a Copy_Configuration
object. Each task will be passed the post ID of this object, which it can
reference for the original form submission data (e.g., what is the new blog's domain?) or for state that has been
built by previous steps in the process (e.g., what is the new blog's ID?).
The tasks that need to run for the copy are defined in a Task_Chain
object, configured in the Blog_Copier_Definer
.
If you need to add additional steps to the copy, create a new Task
for that step and set up a new definer
to override the value of \Tribe\Libs\Blog_Copier\Blog_Copier_Definer::TASK_CHAIN
As each task finishes, it must trigger an action to signify that it has completed, passing the class name of the task
and the args that were originally passed to the Task
's handle()
method.
do_action( Copy_Manager::TASK_COMPLETE_ACTION, static::class, $args );
If the action has failed and the copy cannot continue, trigger the failure action, passing a WP_Error object as the third parameter to the action.
do_action( Copy_Manager::TASK_ERROR_ACTION, static::class, $args, $error );
Automated Testing
Some tests require multisite to run successfully. To enable these tests, run the integration test suite with the
flag --env multisite
.