kernelRootDir = $kernelRootDir; } /** * {@inheritdoc} */ public function getFunctions() { return [ new \Twig_SimpleFunction('asset_md5_start', function ($url) { $path = $this->kernelRootDir . '/../htdocs/' . $url; return substr(md5_file($path), 0, 8); }, ['is_safe' => ['html']]) ]; } public function getName() { return 'assets'; } }