Download the PHP package mukadi/wordpress-bundle without Composer
On this page you can find all versions of the php package mukadi/wordpress-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download mukadi/wordpress-bundle
More information about mukadi/wordpress-bundle
Files in mukadi/wordpress-bundle
Package wordpress-bundle
Short Description Integrate wordpress and symfony in the same application
License MIT
Informations about the package wordpress-bundle
MukadiWordpressBundle
This is a fork of EkinoWordpressbundle, this bundle adapt EkinoWordpressBundle to symfony >= 4 new architecture and features. Some features has been removed (such as automatic symfony authentication when authenticated in Wordpress...) and will be reintegrated as separated bundle to install if needed.
Here are some retained features:
- Use custom Symfony services into Wordpress (note: only public services),
- Use Symfony to manipulate Wordpress database,
- Create custom Symfony routes out of Wordpress,
- Dispatch Event from Wordpress into Symfony *(require mukadi-symfony-bridge Wordpress plugin)
Installation
Before install the bundle, edit your composer.json file and specify the following options:
Run php composer.phar require mukadi/wordpress-bundle
and let Symfony Flex configure the bundle.
Bundle configuration
If your are not using symfony flex, you have to configure manually your bundle, here is the minimal bundle configuration:
Add a public/wp-config.php file
Put the following content in your public/wp-config.php file :
Update the public/index.php file
If you don't make modifications in your public/index.php file you can just copy the content of the generated 'sf-wp-bootstrap.php' (see the code below) into your index.php file, otherwise update your index.php accordingly to that file.
Here's what your index.php file should look like:
Add Wordpress routing into symfony
Add the WordpressBundle routing file in your config/routes.yaml
, after your custom routes to catch all Wordpress routes:
Install Wordpress Plugins via Composer
Edit your composer.json file to add a custom repository:
Now you can install wordpress plugins, just run php composer.phar require wpackagist-plugin/<the-plugin-name>
.
Avoid Doctrine remove custom Wordpress tables
When you install plugins in Wordpress, plugin can create custom tables to store specific data. By default such tables will be removed by the doctrine:migrations:diff
command. You must configure doctrine/dbal to ignore those tables, just have to add the following configuration option to your doctrine configuration:
Manipulate Wordpress database in Symfony
You can call Wordpress table managers in Symfony by calling the following services:
Service identifier | Type |
---|---|
mukadi_wordpress.manager.comment | Wordpress comment manager |
mukadi_wordpress.manager.comment_meta | Wordpress comment metas manager |
mukadi_wordpress.manager.link | Wordpress link manager |
mukadi_wordpress.manager.option | Wordpress option manager |
mukadi_wordpress.manager.post | Wordpress post manager |
mukadi_wordpress.manager.post_meta | Wordpress post metas manager |
mukadi_wordpress.manager.term | Wordpress term manager |
mukadi_wordpress.manager.term_relationships | Wordpress term relationships manager |
mukadi_wordpress.manager.term_taxonomy | Wordpress taxonomy manager |
mukadi_wordpress.manager.user | Wordpress user manager |
mukadi_wordpress.manager.user_meta | Wordpress user metas manager |
All of this services extends the Mukadi\Doctrine\CRUD\CRUD
class, so see the documentation to know how to deal with it.
All versions of wordpress-bundle with dependencies
composer/installers Version ^1.5
phpoption/phpoption Version ^1.7
illuminate/support Version 5.7.*||6.7.*
vlucas/phpdotenv Version ^2.4||3.6.*
symfony/framework-bundle Version ^3.4||^4.0||^5.0
doctrine/doctrine-bundle Version ^1.0||^2.0
doctrine/orm Version ^2.2
hautelook/phpass Version 0.3
mukadi/doctrine-crud Version ^1.0
johnpbloch/wordpress Version 5.1
symfony/dotenv Version >=3.4
symfony/security-core Version >=3.4