Js.php 508 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * JavaScript helper
  4. *
  5. * @author Magento Core Team <core@magentocommerce.com>
  6. *
  7. * Copyright © Magento, Inc. All rights reserved.
  8. * See COPYING.txt for license details.
  9. */
  10. namespace Magento\Framework\View\Helper;
  11. class Js
  12. {
  13. /**
  14. * Retrieve framed javascript
  15. *
  16. * @param string $script
  17. * @return string
  18. */
  19. public function getScript($script)
  20. {
  21. return '<script type="text/javascript">//<![CDATA[' . "\n{$script}\n" . '//]]></script>';
  22. }
  23. }