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

1.0.0 2025-01-09 13:00 UTC

This package is auto-updated.

Last update: 2025-01-09 13:02:05 UTC


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.

Popup Message Example

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
);