Вход Регистрация
Файл: adultscript-2.0.3-pro/files/modules/profile/components/videos_public.php
Строк: 48
<?php
class VComponent_profile_videos_public extends VModule_profile
{
    public function 
__construct()
    {
        
parent::__construct();
    }
    
    public function 
render()
    {
        
$page    VUri::request(4); $page = ($page) ? (int) $page 1;
        
$url    'users/'.$this->username.'/videos/public/';
        if (
$page 1) {
            
$url    .= $page.'/';
        }
        
        if (!
VUri::match($url)) {
            
VModule::load('404'true);
        }
        
        if (!
$this->profile($this->username)) {
            return 
false;
        }
        
        
VLanguage::load('frontend.profile');

        
$user_id        = (int) $this->user['user_id'];
        
$sql_count      "SELECT COUNT(*) AS total_videos
                           FROM #__video
                           WHERE user_id = "
.$user_id."
                           AND type = 'public'
                           AND status = 1"
;
        
$total_videos   $this->db->get_field($sql_count'total_videos');
        
$pagination     VPagination::get($page$total_videos16);
        
$sql            "SELECT video_id, title, slug, likes, rating, rated_by, hd,
                                  thumb, thumbs, duration, total_views, add_time, ext
                           FROM #__video
                           WHERE user_id = "
.$user_id."
                           AND status = 1
                           AND type = 'public'
                           ORDER BY video_id DESC
                           LIMIT "
.$pagination['limit'];
        if (!
$videos $this->cache->get($sql3600)) {
            
$this->db->query($sql);
            if (
$this->db->affected_rows()) {
                
$videos $this->db->fetch_rows();
                
$this->cache->store($sql$videos3600);
            } else {
                
$videos = array();
            }
        }
        
        
$add    = ($page 1) ? ' - '.__('page').' '.$page '';

        
$this->tpl->menu          'community';
        
$this->tpl->submenu       'profile';
        
$this->tpl->extra         'video';        
        
        
$this->tpl->title          __('videos-public-title');
        
        
$this->tpl->meta_title    __('videos-public-meta-title', array($this->username$addVF::cfg_item('site_name')));
        
$this->tpl->meta_desc     __('videos-public-meta-desc', array($this->username$addVF::cfg_item('site_name')));
        
        
$this->tpl->user          $this->user;
        
$this->tpl->username      e($this->username);
        
$this->tpl->is_subscribed $this->is_subscribed;
        
$this->tpl->is_friend     $this->is_friend;
        
$this->tpl->is_self       $this->is_self;
        
$this->tpl->is_moderator  $this->is_moderator;
        
$this->tpl->is_loggedin   $this->is_loggedin;
        
$this->tpl->is_blocked    $this->is_blocked;
        
        
$this->tpl->videos            $videos;
        
$this->tpl->pagination        $pagination;
        
$this->tpl->url                REL_URL.'/users/'.$this->username.'/videos/public/#PAGE#/';
        
        
$this->tpl->load(array('header''profile_items''footer'));
        
$this->tpl->display();
    }
}
Онлайн: 2
Реклама