SpeakersWidget.php 381 Bytes
<?php
/**
 * Виджет, который выводит grid карточки спикеров
 */
namespace frontend\widgets;


use yii\base\Widget;




class SpeakersWidget extends Widget{

	public $speakers;


	public function init()
	{
		parent::init();
	}


	public function run()
	{

		return $this->render('_speakers',[
			'speakerList'   =>$this->speakers
		]);
	}


}