dakzilla/magento2-cachetags-helper

View on GitHub
view/frontend/templates/cachetags.phtml

Summary

Maintainability
Test Coverage
<?php
/**
 * @var $this \Dakzilla\CacheTags\Block\Component
 */
?>
<?php if ($tags = $this->getTags()) { ?>
    <script type="text/x-magento-init">
    {
        "*": {
            "Dakzilla_CacheTags/js/view/cachetags": {
                "tags": "<?php echo implode(', ', $tags); ?>"
            }
        }
    }
    </script>
<?php } ?>