mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-27 12:35:05 +01:00
4c06b0919a
Conflicts: lib/PhpParser/Template.php lib/PhpParser/TemplateLoader.php
77 lines
2.2 KiB
PHP
77 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace PhpParser;
|
|
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
class Template
|
|
{
|
|
protected $parser;
|
|
protected $template;
|
|
|
|
/**
|
|
* Creates a new code template from a template string.
|
|
*
|
|
* @param Parser $parser A parser instance
|
|
* @param string $template The template string
|
|
*/
|
|
public function __construct(Parser $parser, $template) {
|
|
$this->parser = $parser;
|
|
$this->template = $template;
|
|
}
|
|
|
|
/**
|
|
* Get the statements of the template with the passed in placeholders
|
|
* replaced.
|
|
*
|
|
* @param array $placeholders Placeholders
|
|
*
|
|
* @return Node[] Statements
|
|
*/
|
|
public function getStmts(array $placeholders) {
|
|
return $this->parser->parse(
|
|
$this->getTemplateWithPlaceholdersReplaced($placeholders)
|
|
);
|
|
}
|
|
|
|
protected function getTemplateWithPlaceholdersReplaced(array $placeholders) {
|
|
if (empty($placeholders)) {
|
|
return $this->template;
|
|
}
|
|
|
|
return strtr($this->template, $this->preparePlaceholders($placeholders));
|
|
}
|
|
|
|
/*
|
|
* Prepare the placeholders for replacement. This means that
|
|
* a) all placeholders will be surrounded with __.
|
|
* b) ucfirst/lcfirst variations of the placeholders are generated.
|
|
*
|
|
* E.g. for an input array of ['foo' => 'bar'] the result will be
|
|
* ['__foo__' => 'bar', '__Foo__' => 'Bar'].
|
|
*/
|
|
protected function preparePlaceholders(array $placeholders) {
|
|
$preparedPlaceholders = array();
|
|
|
|
foreach ($placeholders as $name => $value) {
|
|
$preparedPlaceholders['__' . $name . '__'] = $value;
|
|
|
|
if (ctype_lower($name[0])) {
|
|
$ucfirstName = ucfirst($name);
|
|
if (!isset($placeholders[$ucfirstName])) {
|
|
$preparedPlaceholders['__' . $ucfirstName . '__'] = ucfirst($value);
|
|
}
|
|
}
|
|
|
|
if (ctype_upper($name[0])) {
|
|
$lcfirstName = lcfirst($name);
|
|
if (!isset($placeholders[$lcfirstName])) {
|
|
$preparedPlaceholders['__' . $lcfirstName . '__'] = lcfirst($value);
|
|
}
|
|
}
|
|
}
|
|
|
|
return $preparedPlaceholders;
|
|
}
|
|
} |