This file contains hidden or 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 | |
// initialize the JadedPHP library here | |
class MyController extends Jaded_Controller | |
{ | |
protected function process(Jaded_Request $oRequest, Jaded_Response $oResponse) | |
{ | |
$oResponse->assign('myVar', 'this is the assigned value'); | |
$oResponse->assign('requestVar', $oRequest->getParam('reqParam')); | |
} |
NewerOlder