OrdersController::actionIndex PHP Method

actionIndex() public method

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