Blame view

frontend/modules/user/widgets/HeaderAuthorized/HeaderAuthorized.php 501 Bytes
d1f8bd40   Alexey Boroda   first commit
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
  <?php
  namespace frontend\modules\user\widgets\HeaderAuthorized;
  
  /**
   * Class HeaderAuthorized
   *
   * @package frontend\modules\user\widgets\HeaderAuthorized
   * @author FilamentV <vortex.filament@gmail.com>
   * @copyright (c), Thread
   */
  class HeaderAuthorized extends \thread\app\base\widgets\Widget
  {
      /**
       *
       */
      public function init()
      {
          parent::init();
      }
  
      /**
       *
       */
      public function run()
      {
          return $this->render('base', [
          ]);
      }
  }