Blame view

shops/application/core/view.php 243 Bytes
8d65d0ce   andryeyev   init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  <?php
  class View
  {
      
      function generate($content_view, $template_view, $data = null, $lang = null)
      {
          if(is_array($data)) {
              extract($data);
          }
          include 'application/views/'.$template_view;
      }
  }
  
  ?>