view develop/models/home.php @ 15:1f98c92ebbfb

first version of UI layout. Very roughly, but works in the fixed sidebar, head line, popups and so on.
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Thu, 19 Feb 2015 18:11:11 +0100
parents 63e08b98032f
children 579f03f8bee5
line wrap: on
line source

<?php

class HomeModel {
	public function Index() {
		return array("Index Value 1", "Value 2", "Value 3");
	}
    
    public function Test() {
        return array("Test Value 1", "Value 2", "Value 3");
    }
    
}



?>