vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Templating/Helper/AssetsHelper.php line 14

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Bundle\FrameworkBundle\Templating\Helper;
  11. @trigger_error('The '.AssetsHelper::class.' class is deprecated since version 4.3 and will be removed in 5.0; use Twig instead.'E_USER_DEPRECATED);
  12. use Symfony\Component\Asset\Packages;
  13. use Symfony\Component\Templating\Helper\Helper;
  14. /**
  15.  * AssetsHelper helps manage asset URLs.
  16.  *
  17.  * @author Fabien Potencier <fabien@symfony.com>
  18.  *
  19.  * @deprecated since version 4.3, to be removed in 5.0; use Twig instead.
  20.  */
  21. class AssetsHelper extends Helper
  22. {
  23.     private $packages;
  24.     public function __construct(Packages $packages)
  25.     {
  26.         $this->packages $packages;
  27.     }
  28.     /**
  29.      * Returns the public url/path of an asset.
  30.      *
  31.      * If the package used to generate the path is an instance of
  32.      * UrlPackage, you will always get a URL and not a path.
  33.      *
  34.      * @param string $path        A public path
  35.      * @param string $packageName The name of the asset package to use
  36.      *
  37.      * @return string The public path of the asset
  38.      */
  39.     public function getUrl($path$packageName null)
  40.     {
  41.         return $this->packages->getUrl($path$packageName);
  42.     }
  43.     /**
  44.      * Returns the version of an asset.
  45.      *
  46.      * @param string $path        A public path
  47.      * @param string $packageName The name of the asset package to use
  48.      *
  49.      * @return string The asset version
  50.      */
  51.     public function getVersion($path$packageName null)
  52.     {
  53.         return $this->packages->getVersion($path$packageName);
  54.     }
  55.     /**
  56.      * {@inheritdoc}
  57.      */
  58.     public function getName()
  59.     {
  60.         return 'assets';
  61.     }
  62. }