Файл: modules/video1/index.php
Строк: 61
<?php
require_once '../../incfiles/core.php';
require_once '../../incfiles/func.php';
require_once '../../incfiles/auth.php';
require_once '../../incfiles/user.php';
$title = ''.lang('Каталог','Каталог');
require_once '../../incfiles/head.php';
echo '<div class="title">
<a href="'.URL.'/?id='.$user['id'].'" onclick="Page.Go(this.href); return false">'.$user['name'].' '.$user['surname'].'</a>
</a>
';
echo'<a class="title_a_hover" href="'.URL.'/video/index::add" onclick="Page.Go(this.href); return false">'.lang('Добавить видео','Додати відео').'</a>
<a class="title_a_hover" href="'.URL.'/video/index::catalog" onclick="Page.Go(this.href); return false">'.lang('Каталог','Каталог').'</a></div>';
echo'<div class="block">';
?>
<style>
.sign {
float: left; /* Выравнивание по правому краю */
border: 1px solid #333; /* Параметры рамки */
padding: 7px; /* Поля внутри блока */
margin: 10px 0 5px 5px; /* Отступы вокруг */
background: #FFF; /* Цвет фона */
}
.sign figcaption {
margin: 0 auto 5px; /* Отступы вокруг абзаца */
width:173px;
}
</style>
<?
$query = mysqli_query($dbi, "SELECT * FROM `video` where user = ".$user_id." ORDER BY `time` DESC");
if (!mysqli_num_rows($query)) {
echo "";
echo lang('Нету видео','Немає відео');
echo "</br>";
} else {
$cp = ceil($all/30);
$p = (isset($_GET['p']) and is_numeric($_GET['p']) and $_GET['p']>1 and $_GET['p']<=$cp) ? $_GET['p'] : 1;
$start = $p*10-10;
while ($video = mysqli_fetch_array($query))
{
$v_id=getYoutubeVideoID($video['link']);
$findfs = 'http://fs.to/video/';
$posfs = strpos($video['link'], $findfs);
// echo "".text_view($video['link'])."";
echo'<a href="'.URL.'/video/index::view::'.$video['id'].'" onclick="Page.Go(this.href); return false">';
if($posfs === false){
echo'<figure class="sign">
<p><img src="http://img.youtube.com/vi/'.$v_id.'/1.jpg" width="173" height="100" alt="'.$video['name'].'"></p>
<figcaption>'.$video['name'].'</figcaption>
</figure></a>';
}else{
echo'<figure class="sign">
<p><img src="http://touchit.com.ua/static/images/post/10-2013/17/fsua.png" width="173" height="100" alt="'.$video['name'].'"></p>
<figcaption>'.$video['name'].'</figcaption>
</figure></a>';
}
}
navi($p,$cp,'/video/index::default/?');
}
?>
<?
echo'</div>';
require_once '../../incfiles/foot.php';
?>