https://github.com/julienloizelet/magento1-comingsoon
Okaeli_ComingSoon is a Magento 1 extension that redirects all pages to a specific one.
https://github.com/julienloizelet/magento1-comingsoon
magento magento-1 magento-extension magento-modules magento1 magento1-module
Last synced: 3 months ago
JSON representation
Okaeli_ComingSoon is a Magento 1 extension that redirects all pages to a specific one.
- Host: GitHub
- URL: https://github.com/julienloizelet/magento1-comingsoon
- Owner: julienloizelet
- License: gpl-3.0
- Created: 2017-01-04T14:44:13.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-05T15:01:01.000Z (about 7 years ago)
- Last Synced: 2025-01-14T13:33:24.150Z (4 months ago)
- Topics: magento, magento-1, magento-extension, magento-modules, magento1, magento1-module
- Language: PHP
- Homepage:
- Size: 55.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Okaeli_ComingSoon
----------------------
```
@category Okaeli
@package Okaeli_ComingSoon
@author Julien Loizelet
@copyright Copyright (c) 2017 Julien Loizelet
@license GNU GENERAL PUBLIC LICENSE Version 3
```## Description
`Okaeli_ComingSoon` is a Magento 1 extension that will redirect any visitor to a specific page.
## Installation
### Requirements
- Magento >= 1.6 (probably much earlier, but I didn't test)
### Modman
Run `modman link /path/to/your/clone/of/this/repo` at root of your Magento Project.
### Composer
In your `composer.json` file, add
```
{
"type": "vcs",
"url": "https://github.com/julienloizelet/magento1-comingsoon"
}
```
in the `repositories` part and
```
"okaeli/magento1-comingsoon":"dev-master"
```
in the `require` part.## Usage
### Configurations
This module comes with some configurations : `System Config > Okaeli > Okaeli Coming Soon`
* Enable / Disable feature.
* Choose unredirected IPs
* Choose unredirected URIs> You must add `/index.php/comingsoon` if your setting `System Configuration > Web > Search Engines Optimization > Use Web Server Rewrites
` is `No`.* Specific Redirection (by default, all url are redirected to `comingsoon`).
* Enable / Disable debug log.
## Technical Notes
### No rewrite. Events driven development.
This extension is **0 rewrite** guaranteed. The following event is listened:
* `controller_front_send_response_before` : used to redirect all urls to another one.
### Coding Standards
This extension has been checked with the [Magento Extension Quality Program Coding Standard](https://github.com/magento/marketplace-eqp).
You can find the output of the command `phpcs /path/to/Okaeli/ComingSoon/sources --standard=MEQP1` in [this file](doc/coding-standard/magento-eqp.txt).
## Support
If you encounter any problems or bugs, please create an issue on
[GitHub](https://github.com/julienloizelet/magento1-comingsoon/issues).## Contribution
Any contribution is highly welcome. The best possibility to provide any code is to open
a [pull request on GitHub](https://help.github.com/articles/using-pull-requests).## License
[GNU General Public License, version 3 (GPLv3)](http://opensource.org/licenses/gpl-3.0)