Created
October 5, 2011 20:57
-
-
Save makeusabrew/1265702 to your computer and use it in GitHub Desktop.
Jaoss - Basic Controller
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class StaticController extends Controller { | |
public function about() { | |
// any controller logic would take place here | |
$title = "Hello About Page!"; | |
// assign the value of $title to the view, where it will be accessible as $pageTitle | |
$this->assign("pageTitle", $title); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment