Finish flagout

This commit is contained in:
2016-10-01 18:49:51 +02:00
21 changed files with 450 additions and 32 deletions

View File

@@ -90,6 +90,14 @@ class CardController extends Controller
'dataProvider' => $dataProvider,
]);
}
public function actionInfo($id_card){
$card = $this->findModel($id_card);
return $this->render("info",['card' => $card]);
}

View File

@@ -143,12 +143,14 @@ class CustomerController extends Controller
}
}
/**
* Updates an existing Customer model.
* If update is successful, the browser will be redirected to the 'view' page.
* @param integer $id
* @return mixed
*/
/**
* Updates an existing Customer model.
* If update is successful, the browser will be redirected to the 'view' page.
* @param null $number
* @return mixed
* @throws NotFoundHttpException
* @internal param int $id
*/
public function actionUpdate($number = null)
{
$card = null;