cssoft / core
CSSoft core module. Its purpose is to add CSSoft menu and config entries
Installs: 2
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:magento2-module
README
CSSoft_Core module adds menu and config entries to Magento backend. It also utilize some common tasks used by other modules.
Installation
composer require cssoft/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 \CSSoft\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 );