swordbros/sw-popup

Aimeos sw-popup extension

Maintainers

Package info

github.com/swordbros/sw-popup

Type:aimeos-extension

pkg:composer/swordbros/sw-popup

Statistics

Installs: 4

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.1 2021-09-14 14:26 UTC

This package is auto-updated.

Last update: 2026-03-17 18:25:56 UTC


README

Introduction

This plugin supports PHP 7.2 and higher You can easily add popup to your website using this plugin. This plugin is compatible with aimeos version 2020.07.6

Download

Composer

Add this line your web site composser.json 
    "require": {
        ...
        "swordbros/sw-popup": "^1.1"
    },

Solving problems with minimal stability

Add to your composer.json

    "scripts": {
        "post-update-cmd": [
            ...
            "@php artisan migrate --path=vendor/swordbros/sw-popup/lib/custom/setup/____fix_popup_table.php"

        ]
    }


Add the codes to your js file

$(document).ready(function () {

	$('#close-button').on('click', function () {
		$('#myModal').css("display","none")
	});



	window.onclick = function(event) {
		var target = $( event.target );
		if (target.is( "#myModal" )) {
			$('#myModal').css("display","none")
		}
	}

});

If you want to get only data for your template file

<?php $popup_data = \Aimeos\Shop\Facades\Shop::get('popup')->addData($this);?>