summaryrefslogtreecommitdiffstats
path: root/application/classes/controller/home.php
blob: 7ec6e86d68fb96a60065a55d1a8dad3c72394229 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
class Home_Controller extends Controller {

	public function action_index(){
		foreach(ORM::factory('fairy')->with ('tree.protector','tree.flower.protector')->find_all() as $fairy) {
			echo $fairy->tree->protector->name;
		
		}
	}
		
}
?>