Logo white

Anastasia / energyforum

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • energyforum
  • frontend
  • widgets
  • SpeakersWidget.php
  • add speakers part
    147ec2fb
    alex authored
    2018-10-22 17:25:53 +0300  
    Browse Code »
SpeakersWidget.php 381 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
<?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
		]);
	}


}