123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace Dotdigitalgroup\Email\Plugin;
- /**
- * Class MinificationPlugin
- *
- * @SuppressWarnings(PHPMD.UnusedFormalParameter)
- */
- class MinificationPlugin
- {
- /**
- * Exclude external js from minification
- *
- * @param \Magento\Framework\View\Asset\Minification $subject
- * @param callable $proceed
- * @param string $contentType
- *
- * @return array
- */
- public function aroundGetExcludes(
- \Magento\Framework\View\Asset\Minification $subject,
- callable $proceed,
- $contentType
- ) {
- $result = $proceed($contentType);
- //Content type can be css or js
- if ($contentType == 'js') {
- $result[] = 'trackedlink.net/_dmpt.js';
- $result[] = 'trackedlink.net/_dmmpt.js';
- }
- return $result;
- }
- }
|