<?php namespace openend\widgets; use yii\base\Widget; class FooterWidget extends Widget { public $message; public function init() { parent::init(); } public function run() { return $this->render('footer'); } }