Skip to content

Commit

Permalink
Adding examples for object sections
Browse files Browse the repository at this point in the history
  • Loading branch information
zombor authored and bobthecow committed Jul 6, 2010
1 parent b096cb1 commit 6084a37
Show file tree
Hide file tree
Showing 6 changed files with 66 additions and 0 deletions.
17 changes: 17 additions & 0 deletions examples/sections_iterable_object/Sections_Iterable_Object.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

class Sections_Iterable_Object extends Mustache {
public $start = "It worked the first time.";

public function middle() {
return new Iterable_Object;
}

public $final = "Then, surprisingly, it worked the final time.";
}

class Iterable_Object
{
public $foo = 'And it worked the second time.';
public $bar = 'As well as the third.';
}
6 changes: 6 additions & 0 deletions examples/sections_iterable_object/sections.mustache
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
* {{ start }}
{{# middle }}
* {{ foo }}
* {{ bar }}
{{/ middle }}
* {{ final }}
4 changes: 4 additions & 0 deletions examples/sections_iterable_object/sections.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
* It worked the first time.
* And it worked the second time.
* As well as the third.
* Then, surprisingly, it worked the final time.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

class Sections_NonIterable_Object extends Mustache {
public $start = "It worked the first time.";

public function middle() {
return new Non_Iterable_Object;
}

public $final = "Then, surprisingly, it worked the final time.";
}

class Non_Iterable_Object
{
protected $_data = array(
'foo' => 'And it worked the second time.',
'bar' => 'As well as the third.'
);

public function __get($key)
{
return isset($this->_data[$key]) ? $this->_data[$key] : NULL;
}

public function __isset($key)
{
return isset($this->_data[$key]);
}
}
6 changes: 6 additions & 0 deletions examples/sections_noniterable_object/sections.mustache
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
* {{ start }}
{{# middle }}
* {{ foo }}
* {{ bar }}
{{/ middle }}
* {{ final }}
4 changes: 4 additions & 0 deletions examples/sections_noniterable_object/sections.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
* It worked the first time.
* And it worked the second time.
* As well as the third.
* Then, surprisingly, it worked the final time.

0 comments on commit 6084a37

Please sign in to comment.