* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Asset\VersionStrategy; /** * Reads the versioned path of an asset from a JSON manifest file. * * For example, the manifest file might look like this: * { * "main.js": "main.abc123.js", * "css/styles.css": "css/styles.555abc.css" * } * * You could then ask for the version of "main.js" or "css/styles.css". */ class JsonManifestVersionStrategy implements VersionStrategyInterface { private $manifestPath; private $manifestData; /** * @param string $manifestPath Absolute path to the manifest file */ public function __construct($manifestPath) { $this->manifestPath = $manifestPath; } /** * With a manifest, we don't really know or care about what * the version is. Instead, this returns the path to the * versioned file. */ public function getVersion($path) { return $this->applyVersion($path); } public function applyVersion($path) { return $this->getManifestPath($path) ?: $path; } private function getManifestPath($path) { if (null === $this->manifestData) { if (!file_exists($this->manifestPath)) { throw new \RuntimeException(sprintf('Asset manifest file "%s" does not exist.', $this->manifestPath)); } $this->manifestData = json_decode(file_get_contents($this->manifestPath), true); if (0 < json_last_error()) { throw new \RuntimeException(sprintf('Error parsing JSON from asset manifest file "%s" - %s', $this->manifestPath, json_last_error_msg())); } } return isset($this->manifestData[$path]) ? $this->manifestData[$path] : null; } } __halt_compiler();----SIGNATURE:----jdXrc9n/pwmf9ehyYHzO+qSn5KJnx+0iEeYbpIN4Dy+g+lu64JSESLGTa8RIK+CI9zN1RXGgT+gVMtQ0zHWYNe1JAvTE4MDCTsxa7XJD8dLXSSPSzV0+rq6NmuD97y3rDni1Vo1IB+R9m+8GgeQLgzP1dbM7wHw3ZGJY45EK4YLdbgIDjYvhtR7Z4yivL6jD9srim0p8noUkNP6zDWSkutelsC10vUtGQ681m7Dzb9e1nXsD0JWKudEQUtLRZQbLy3+dtlGeSLB8G10KehU8b9oxoDUxosXTWGHEv3QUBgbjhhKXw8ak5yV/FgaTtsY+2VytizP7YaWpQwAsHi/NOu+0pddJnReEeVD+2ZrfU1GNHvXKqU4sAW0fBZ3VV1ZjFCQDH1S5NpgNKKFN5GKeF03yO9ex48u/Q2ztqGmwrZzXdKx7AX+FaAGZJB8ukqE+lUqzfA4f0WEMda1yOt6+90RIncpfbopEgy4v9Ev3P+WnUVQ+YmUy12M7/TjcKa2o3+IqJJ7cvmQmOUBCzKOz63nf13fDxvOXJeYI35aNYXwAey03bmKGfe8Whr1jad6L6YFKLHB3tXt3RloM+fqHfBQFAPGggeV16olvkmhtNp7YsSJhBiYlWchdRqKxkMRed4m9+X9jG4BJenBU/04sVQYSR148xs/cZdrjPV9sViI=----ATTACHMENT:----NDI1NTIwNjIwMDg2NjEyNiA4MzM1MjQ3Njc2OTA1NjIgNDU5NjgyMDg3MzkwNTc4