swissup / module-core
Swissup core module. It's purpose is to add Swissup menu and config entries
Installs: 164 603
Dependents: 14
Suggesters: 0
Security: 0
Stars: 6
Watchers: 8
Forks: 3
Open Issues: 1
Type:magento2-module
- dev-master
- 1.12.20
- 1.12.19
- 1.12.18
- 1.12.17
- 1.12.16
- 1.12.15
- 1.12.14
- 1.12.13
- 1.12.12
- 1.12.11
- 1.12.10
- 1.12.9
- 1.12.8
- 1.12.7
- 1.12.6
- 1.12.5
- 1.12.4
- 1.12.3
- 1.12.2
- 1.12.1
- 1.12.0
- 1.11.1
- 1.11.0
- 1.10.5
- 1.10.4
- 1.10.3
- 1.10.2
- 1.10.1
- 1.10.0
- 1.9.0
- 1.8.7
- 1.8.6
- 1.8.5
- 1.8.4
- 1.8.3
- 1.8.2
- 1.8.1
- 1.8.0
- 1.7.3
- 1.7.2
- 1.7.1
- 1.7.0
- 1.6.2
- 1.6.1
- 1.6.0
- 1.5.0
- 1.4.9
- 1.4.8
- 1.4.7
- 1.4.6
- 1.4.5
- 1.4.4
- 1.4.3
- 1.4.2
- 1.4.1
- 1.4.0
- 1.3.1
- 1.3.0.2
- 1.3.0.1
- 1.3.0
- 1.2.3
- 1.2.2
- 1.0.2
- 1.0.1
- 1.0.0
This package is auto-updated.
Last update: 2024-11-11 13:57:20 UTC
README
Swissup_Core module adds menu and config entries to Magento backend. It also utilize some common tasks used by other modules.
Installation
composer require swissup/module-core bin/magento setup:upgrade
Popup Message Manager
Popup message manager allows to show regular Magento messages with additional information in popup window.
Usage example
Inject \Swissup\Helper\PopupMessageManager
component into your controller
action and use it instead of built-in \Magento\Framework\Message\Manager
:
$this->popupMessageManager->addError( __('Decoding failed: Syntax error'), $popupText, $popupTitle );