FooterWidget.php 225 B

1234567891011121314151617181920
  1. <?php
  2. namespace openend\widgets;
  3. use yii\base\Widget;
  4. class FooterWidget extends Widget
  5. {
  6. public $message;
  7. public function init()
  8. {
  9. parent::init();
  10. }
  11. public function run()
  12. {
  13. return $this->render('footer');
  14. }
  15. }