16 lines
291 B
PHP
16 lines
291 B
PHP
<?php
|
|
|
|
class RecursivePartials extends Mustache {
|
|
protected $_partials = array(
|
|
'child' => " > {{ name }}{{#child}}{{>child}}{{/child}}",
|
|
);
|
|
|
|
public $name = 'George';
|
|
public $child = array(
|
|
'name' => 'Dan',
|
|
'child' => array(
|
|
'name' => 'Justin',
|
|
'child' => false,
|
|
)
|
|
);
|
|
} |