victoire / layout-widget
Victoire Layout widget
Installs: 3 928
Dependents: 1
Suggesters: 0
Security: 0
Stars: 2
Watchers: 15
Forks: 3
Open Issues: 4
Type:symfony-bundle
Requires
- victoire/victoire: ~2.2 | ~3.0
This package is auto-updated.
Last update: 2021-12-21 22:52:11 UTC
README
Victoire Layout Bundle
What is the purpose of this bundle
This bundles gives you access to the Columns Widget.
This widget set up the layout of your pages in order to create from 1 to 6 colums on the same level. Each column can holds any kind of widget.
Set Up Victoire
If you haven't already, you can follow the steps to set up Victoire here
Install the bundle
Run the following composer command :
php composer.phar require victoire/layout-widget
Reminder
Do not forget to add the bundle in your AppKernel !
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
...
new Victoire\Widget\LayoutBundle\VictoireWidgetLayoutBundle(),
);
return $bundles;
}
}