Download the PHP package magently/module-content-setup without Composer
On this page you can find all versions of the php package magently/module-content-setup. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download magently/module-content-setup
More information about magently/module-content-setup
Files in magently/module-content-setup
Package module-content-setup
Short Description Magently Content Setup module for Magento 2.
License OSL-3.0
Informations about the package module-content-setup
Magently Content Setup Module
Installation
To install the module, run the following commands:
Usage
Now you can use the module in your code.
Inject Magently\ContentSetup\Model\ContentSetupFactory
in your UpgradeData / PatchData class - a Factory is used here so that you can use this module in different modules in the project, for example:
Then create an object from a Factory passing the name of your module, for example:
From now on, you can use the module to upload your content:
Cms Pages, Cms Blocks and Email Templates must be placed in the structure of your module:
app/code/VendorName/ModuleName/Setup/Content/{COMPONENT_NAME}
, e.g.
app/code/Magently/TestModule/Setup/Content/Block/test_block.html
and app/code/Magently/TestModule/Setup/Content/Block/test_block.php
files will be used to create / update a block with a test_block
identifier. Put the content of the block in the .html
file. In the .php
file, put the data as an array with keys such as name
or is_active
:
Declare Magento Variables as below, without any files:
More information
You can find more about how the module works on our Magently blog: https://magently.com/blog/add-magento-cms-blocks-programmatically
In case of problems or ideas on how to improve the module, don't hestiate to open a pull request.