InformationController::actionIndex PHP Method

actionIndex() public method

public actionIndex ( )
    public function actionIndex()
    {
        $informations = Information::model()->findAll();
        $this->render('index', array('informations' => $informations));
    }
InformationController