RecursivePartials.php 291 B

12345678910111213141516
  1. <?php
  2. class RecursivePartials extends Mustache {
  3. protected $_partials = array(
  4. 'child' => " > {{ name }}{{#child}}{{>child}}{{/child}}",
  5. );
  6. public $name = 'George';
  7. public $child = array(
  8. 'name' => 'Dan',
  9. 'child' => array(
  10. 'name' => 'Justin',
  11. 'child' => false,
  12. )
  13. );
  14. }