comsa / sulu-page-export
Allows to export pages in Sulu admin
2.0.0
2021-09-06 14:09 UTC
Requires
- php: ^8.0
- symfony/config: ^4.3 || ^5.0
- symfony/dependency-injection: ^4.3 || ^5.0
- symfony/http-foundation: ^4.3 || ^5.0
- symfony/http-kernel: ^4.3 || ^5.0
This package is auto-updated.
Last update: 2024-11-06 20:14:59 UTC
README
Make sure Composer is installed globally, as explained in the installation chapter of the Composer documentation.
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require comsa/sulu-page-export dev-master
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the config/bundles.php
file of your project:
// config/bundles.php
return [
// ...
Comsa\SuluPageExport\SuluPageExportBundle::class => ['all' => true],
];
Step 3: Active routes for bundle
#config/routes_admin.yaml
comsa_sulu_page_export:
type: rest
prefix: /admin/api
resource: '@SuluPageExportBundle/Resources/config/routes.yaml'
Step 4: Add JS to webpack build process
In assets/admin/package.json
add the page export dependencies like so:
{
// ...
"dependencies": {
// ...
"sulu-page-export-bundle": "file:../../vendor/comsa/sulu-page-export/Resources/js"
}
}
Install these assets using npm install
Step 5: Add Page export bundle package to admin panel
In assets/admin/index.js
add the following above startAdmin()
:
// ...
// Implement custom extensions here
import 'sulu-page-export-bundle';
// ...