| Total Complexity | 1 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | class TSkinTemplate extends TTemplate |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * Constructor. |
||
| 27 | * turns off attribute validation |
||
| 28 | * @param string $template the template string |
||
| 29 | * @param string $contextPath the template context directory |
||
| 30 | * @param null|string $tplFile the template file, null if no file |
||
| 31 | * @param int $startingLine the line number that parsing starts from (internal use) |
||
| 32 | * @param bool $sourceTemplate whether this template is a source template, i.e., this template is loaded from |
||
| 33 | * some external storage rather than from within another template. |
||
| 34 | */ |
||
| 35 | public function __construct($template, $contextPath, $tplFile = null, $startingLine = 0, $sourceTemplate = true) |
||
| 41 |