<!-- TITLE: Footer Configurator -->
<!-- SUBTITLE: A quick summary of Footer Configurator -->
# Footer Configurator
## Features
- Add possibility to manipulate columns and links inside footer.
- Add possibility to change footer heading.
## Module compatibility
`Magento`: 2.4.4^
`PHP`: 8.1^
## Configuration
### Aurora Creation -> Footer Configurator -> Footer Configuration
![Config](/uploads/footer-configurator/config.png "Configuration")
`General -> Enable` - Disable/Enable module.
`General -> Heading` - Change main footer heading.
### Aurora Createion -> Footer Configurator -> Config Columns
![Grid](/uploads/footer-configurator/grid.png "Grid")
### Aurora Createion -> Footer Configurator -> Config Columns -> Add
![form](/uploads/footer-configurator/form.png "Form")
`Enable/Disable` - Enable disable column.
`Subheading` - Subheading for column.
`Links` - All displayed links inside colum.n
## Installation
### Composer
1. Add repo to composer.json:
```text
"repositories": [
...
{
"type": "vcs",
"url": "git@git.auroracreation.com:aurora-modules/module-footer-links.git"
}
...
],
```
2. Add package to composer.json:
```text
"require": {
...
"aurora/footer-configurator": "*"
...
},
```
3. In Magento root folder run commands:
```text
composer update aurora/module-footer-configurator
php bin/magento module:enable Aurora_FooterConfigurator
php bin/magento setup:upgrade
```
### Manual
1. Unzip archive.
2. Upload extension files on your server to:
```text
{Magento root}
└── app/
└── code
```
3. In Magento root folder run commands:
```text
php bin/magento module:enable Aurora_FooterConfigurator
php bin/magento setup:upgrade
```
- Enjoy!
## Change Log
### v1.1.0
- Add possibility to create custom number of columns inside footer.
- Move columns settings to created CRUD.
### v1.0.0
- Add possibility to add links inside footer via PA.
- Add possibility to customize footer columns via PA.
- Add possibility to change footer main heading via PA.