├── Api └── UpdateSessionInterface.php ├── Block └── Component.php ├── CHANGELOG.md ├── LICENSE ├── Model └── UpdateSession.php ├── README.md ├── composer.json ├── etc ├── adminhtml │ └── system.xml ├── config.xml ├── di.xml ├── module.xml └── webapi.xml ├── img.png ├── registration.php └── view └── frontend ├── layout └── default.xml ├── requirejs-config.js ├── templates └── session.lifetime.popup.phtml └── web ├── css └── source │ └── _module.less ├── js ├── model │ └── timer.js └── view │ └── sessionTimeoutPopup.js └── template └── view └── sessionTimeoutPopup.html /Api/UpdateSessionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-customer-timeout-popup/HEAD/Api/UpdateSessionInterface.php -------------------------------------------------------------------------------- /Block/Component.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-customer-timeout-popup/HEAD/Block/Component.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-customer-timeout-popup/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-customer-timeout-popup/HEAD/LICENSE -------------------------------------------------------------------------------- /Model/UpdateSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-customer-timeout-popup/HEAD/Model/UpdateSession.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-customer-timeout-popup/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-customer-timeout-popup/HEAD/composer.json -------------------------------------------------------------------------------- /etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-customer-timeout-popup/HEAD/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-customer-timeout-popup/HEAD/etc/config.xml -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-customer-timeout-popup/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-customer-timeout-popup/HEAD/etc/module.xml -------------------------------------------------------------------------------- /etc/webapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-customer-timeout-popup/HEAD/etc/webapi.xml -------------------------------------------------------------------------------- /img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-customer-timeout-popup/HEAD/img.png -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-customer-timeout-popup/HEAD/registration.php -------------------------------------------------------------------------------- /view/frontend/layout/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-customer-timeout-popup/HEAD/view/frontend/layout/default.xml -------------------------------------------------------------------------------- /view/frontend/requirejs-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-customer-timeout-popup/HEAD/view/frontend/requirejs-config.js -------------------------------------------------------------------------------- /view/frontend/templates/session.lifetime.popup.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-customer-timeout-popup/HEAD/view/frontend/templates/session.lifetime.popup.phtml -------------------------------------------------------------------------------- /view/frontend/web/css/source/_module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-customer-timeout-popup/HEAD/view/frontend/web/css/source/_module.less -------------------------------------------------------------------------------- /view/frontend/web/js/model/timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-customer-timeout-popup/HEAD/view/frontend/web/js/model/timer.js -------------------------------------------------------------------------------- /view/frontend/web/js/view/sessionTimeoutPopup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-customer-timeout-popup/HEAD/view/frontend/web/js/view/sessionTimeoutPopup.js -------------------------------------------------------------------------------- /view/frontend/web/template/view/sessionTimeoutPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-customer-timeout-popup/HEAD/view/frontend/web/template/view/sessionTimeoutPopup.html --------------------------------------------------------------------------------