Файл: Kagao-v3.0/upload/myprofile.php
Строк: 63
<?php
require('classes/config.php');
if($_POST){
    session_start();
    include "load.php";
    die;    
}
    include "inc/rain.tpl.class.php";
    include "inc/db.php";
    include "inc/kategorie.php";
    include "inc/produkt.php";
    $db = new db();
    
    if( empty( $_SESSION['login'] ) ){ $e->location('mainmeineanzeigen'); die; }
    
    if( $_SESSION['mobile'] == 'on' and module_mobile == 1 ){
        
    raintpl::configure("base_url", null );
    raintpl::configure("tpl_dir", "tpl/m/" );
    raintpl::configure("cache_dir", "tmp/m/" );
        
    }else{
    
    raintpl::configure("base_url", null );
    raintpl::configure("tpl_dir", "tpl/" );
    raintpl::configure("cache_dir", "tmp/" );
    }
    $tpl = new RainTPL;
    
    include "load.php";
        
    $info = array( 'title'        => 'Profil Einstellungen',
                   'copyright'     => $_init['copyrightname'],
                   'page'        => 'profilesettings',
                   'isLogin'    => $_SESSION['login'] ? true : false,
                   'titel'        => 'Profil Einstellungen'
                    );
    
    $tpl->assign( $e->userProfile() );
    $tpl->assign( $info );
    
    #->Kategorien
    $cat = new controller_cate();
    $tpl->assign("cats", $cat->getCategory());
    
    
    $html = $tpl->draw( 'page', $return_string = true );
    echo $html;
        
        class str{
            function cut($t){
                return substr($t, 1, 2 );
            }
        }
        
?>