MetaForm.php 403 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace backend\widgets\meta;
  3. use yii\widgets\InputWidget;
  4. class MetaForm extends InputWidget
  5. {
  6. public function init()
  7. {
  8. parent::init();
  9. if ($this->hasModel()) {
  10. $this->value = $this->model->getMetaModel();
  11. }
  12. }
  13. public function run()
  14. {
  15. return $this->render('meta_form', [
  16. 'model' => $this->value
  17. ]);
  18. }
  19. }