18 lines
286 B
PHP
18 lines
286 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace frontend\modules\hospital\controllers;
|
||
|
|
|
||
|
|
class ImporterController extends \yii\web\Controller
|
||
|
|
{
|
||
|
|
public function actionCheck()
|
||
|
|
{
|
||
|
|
return $this->render('check');
|
||
|
|
}
|
||
|
|
|
||
|
|
public function actionIndex()
|
||
|
|
{
|
||
|
|
return $this->render('index');
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|