Blame view

backend/views/site/index.php 396 Bytes
1755c393   Yarik   Basic template in...
1
  <?php
567888e8   Yarik   Widgets
2
      
c8500c2f   Alexey Boroda   -Analytics in pro...
3
4
5
      /**
       * @var View $this
       */
567888e8   Yarik   Widgets
6
      
c8500c2f   Alexey Boroda   -Analytics in pro...
7
      use artbox\gentelella\widgets\XPanel;
4acbd19d   Alexey Boroda   -Bar tabs
8
      use backend\assets\AnalyticsAsset;
c8500c2f   Alexey Boroda   -Analytics in pro...
9
      use yii\web\View;
3cae1b75   Alexey Boroda   -Analytics almost...
10
      
c8500c2f   Alexey Boroda   -Analytics in pro...
11
      $this->title = 'Artbox !';
4acbd19d   Alexey Boroda   -Bar tabs
12
13
      
      AnalyticsAsset::register($this);
c8500c2f   Alexey Boroda   -Analytics in pro...
14
15
16
17
18
19
20
21
22
  ?>
  
  <?php $panel = XPanel::begin(
      [
          'title'   => 'Hello!',
          'toolbar' => false,
      ]
  ); ?>
  
4acbd19d   Alexey Boroda   -Bar tabs
23
  <div id="chart"></div>
c8500c2f   Alexey Boroda   -Analytics in pro...
24
25
  
  <?php $panel::end(); ?>