Blame view

mobile/source/core/class.sys.tmpl.php 422 Bytes
a1684257   Administrator   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  <?php
  /**
  * @author:  Bunzia Alexander <nifus@mail.ru> <http://www.weblancer.net/users/nifus/>
  * @copyright: Copyright (c) 2010, Bunzia Alexander
  * @version: 1.0
  * @license: http://www.gnu.org/copyleft/gpl.html GNU/GPL
  * @package HiLo CMS
  */
  
  class sys_tmpl
  {
    public function load($url,$type='phptal'){
      if ( $type=='phptal' ){
        include_once(MAIN_SOURCE_PATH.'/ext/phptal/PHPTAL.php');
        
      }
    }
    
  }
  
  ?>