PhoneWidget.php 730 Bytes
<?php
/**
 * =====================================================================================================================
 * Виджет, который сам смотрит в базу, берёт телефон и вставляет его в шаблон
 * =====================================================================================================================
 */
namespace frontend\widgets;


use yii\base\Widget;
use common\models\Settings;


class PhoneWidget extends Widget
{
	public       $class1;
	private      $phones=[];
	public       $style;


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


	}


	public function renderPhone()
	{
		return $this->render('_renderPhone');
	}







}









?>