22 lines
387 B
PHP
22 lines
387 B
PHP
<?php
|
|
namespace frontend\components;
|
|
|
|
use yii\base\Widget;
|
|
|
|
class ReceptionCardNumberWidget extends Widget{
|
|
|
|
public $number;
|
|
public $route;
|
|
|
|
public $customer;
|
|
public $card;
|
|
|
|
public $viewFile = '//common/_form_card_number';
|
|
|
|
|
|
public function run(){
|
|
echo $this->render($this->viewFile,['card' => $this->card, 'customer' =>$this->customer , 'route' => $this->route ]);
|
|
}
|
|
|
|
|
|
} |