mirror of
https://github.com/kennethreitz-archive/wp-mustache.git
synced 2026-06-05 23:50:19 +00:00
13 lines
199 B
PHP
13 lines
199 B
PHP
<?php
|
|
|
|
class ChildContext extends Mustache {
|
|
public $parent = array(
|
|
'child' => 'child works',
|
|
);
|
|
|
|
public $grandparent = array(
|
|
'parent' => array(
|
|
'child' => 'grandchild works',
|
|
),
|
|
);
|
|
} |