* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * TemplateNameParser parsers template name from the short notation * "bundle:section:template.renderer.format" to a template name * and an array of options. * * @author Fabien Potencier */ class TemplateNameParser extends BaseTemplateNameParser { /** * Parses a template to a template name and an array of options. * * @param string $name A template name * @param array $defaults An array of default options * * @return array An array composed of the template name and an array of options */ public function parse($name, array $defaults = array()) { $parts = explode(':', $name); if (3 !== count($parts)) { throw new \InvalidArgumentException(sprintf('Template name "%s" is not valid (format is "bundle:section:template.renderer.format").', $name)); } $options = array_replace( array( 'format' => '', ), $defaults, array( 'bundle' => str_replace('\\', '/', $parts[0]), 'controller' => $parts[1], ) ); $elements = explode('.', $parts[2]); if (3 !== count($elements)) { throw new \InvalidArgumentException(sprintf('Template name "%s" is not valid (format is "bundle:section:template.renderer.format").', $name)); } $parts[2] = $elements[0]; $options['renderer'] = $elements[1]; $options['format'] = $elements[2]; return array($parts[2], $options); } }