77 lines
1.7 KiB
PHP
77 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace frontend\controllers;
|
|
|
|
use common\models\Card;
|
|
use common\models\DoorCardPass;
|
|
use Yii;
|
|
use common\models\City;
|
|
use backend\models\CitySearch;
|
|
use yii\web\BadRequestHttpException;
|
|
use yii\web\Controller;
|
|
use yii\web\NotFoundHttpException;
|
|
use yii\filters\VerbFilter;
|
|
use yii\base\BaseObject;
|
|
use yii\db\Query;
|
|
use yii\helpers\Json;
|
|
|
|
/**
|
|
* CityController implements the CRUD actions for City model.
|
|
*/
|
|
class DoorCardPassController extends Controller
|
|
{
|
|
public function behaviors()
|
|
{
|
|
return [
|
|
'verbs' => [
|
|
'class' => VerbFilter::className(),
|
|
'actions' => [
|
|
'allow-card' => ['post'],
|
|
],
|
|
],
|
|
];
|
|
}
|
|
|
|
|
|
public function actionAllowCard($idCard)
|
|
{
|
|
$card = Card::findOne($idCard);
|
|
if (!isset($card)){
|
|
throw new BadRequestHttpException("card id not found");
|
|
}
|
|
$model = new DoorCardPass();
|
|
$model->id_card = $idCard;
|
|
$model->save(false);
|
|
|
|
$this->redirect('customer/reception');
|
|
}
|
|
|
|
/**
|
|
* Displays a single City model.
|
|
* @param integer $id
|
|
* @return mixed
|
|
*/
|
|
public function actionView($id)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
* Finds the City model based on its primary key value.
|
|
* If the model is not found, a 404 HTTP exception will be thrown.
|
|
* @param integer $id
|
|
* @return City the loaded model
|
|
* @throws NotFoundHttpException if the model cannot be found
|
|
*/
|
|
protected function findModel($id)
|
|
{
|
|
if (($model = City::findOne($id)) !== null) {
|
|
return $model;
|
|
} else {
|
|
throw new NotFoundHttpException('The requested page does not exist.');
|
|
}
|
|
}
|
|
|
|
}
|