<?php
class HelloworldController extends Controller
{
public $strToDisplayByPull = 'Hello';
public function actionIndex()
{
$this->renderPartial('index',array(
"strToDisplayByPush"=>"World"
));
}
public function activeFeedback()
{
$model=new FeedbackForm;
$this->renderpartial('feedback',array("model"=>$model));
}
}