ACC SHELL
<?php
require "../include/config.php";
header('X-Frame-Options: Allow-From http://dobremistoprozivot.cz');
if (isset($_GET['id']) && intval($_GET['id']) > 0) { $id = intval($_GET['id']); }
else {
$sql = "
SELECT MAX(videa.id)
FROM videa
LEFT JOIN videa_kanaly ON videa.id = videa_kanaly.idvidea
WHERE videa_kanaly.idkanaly = 6 AND videa.zobrazit = 1 AND videa.schvaleno = 1 AND videa.pripraveno IS NOT NULL
";
$id = dibi::query($sql)->fetchSingle();
}
/*
$memcache = new Memcache;
$memcache->addserver('127.0.0.1');
$memcache->connect('127.0.0.1');
$video = $memcache->get('partner_denik_'.$id);
if(!$video){
*
*/
$sql = "
SELECT videa.id, videa.vimeo, videa.nazev, videa.mr_url
FROM [videa]
WHERE videa.id = %i
";
$video = dibi::query($sql,$id)->fetch();
//$memcache->set('partner_dmpz_'.$id,$video,MEMCACHE_COMPRESSED,300);
//}
header('Content-Type: application/javascript');
$baseUrl = "https://www.oltv.cz";
$urlVideo = $baseUrl."/dobre-misto-pro-zivot/".$video->mr_url."-kanal-".$video->id.".html?utm_source=occ&utm_medium=partner&utm_campaign=partner_iframe_dobre_misto_pro_zivot";
$cssIkonaOltv = "display:block; width:20px; height:20px; text-indent:-10000px; overflow:hidden; background:url(https://www.oltv.cz/pics/favicon.png) no-repeat 0 2px; float:left; margin-right:5px;";
$cssPruh = "width:365px; padding:5px; background:#E70E25; color:#fff line-height:10px;";
$cssA = "font-size:13px; color:#fff; text-decoration:none; font-weight:bold; font-family:Arial; float:left; line-height:20px;";
$cssDalsi = "float:right; color:#fff; text-decoration:none; font-family:Arial; font-size:13px; line-height:20px; font-weight:bold;";
?>
document.write('<a href="<?=$urlVideo?>" target="_blank" title="<?=$video->nazev?>">');
document.write('<img src="https://www.oltv.cz/data/videa/<?=$video->id?>/<?=$video->vimeo?>.jpg" style="display:block;" alt="<?=$video->nazev?>" width="375" height="215" />');
document.write('</a>');
document.write('<div style="<?=$cssPruh?>">');
document.write('<a href="<?=$baseUrl?>" target="_blank" style="<?=$cssIkonaOltv?>">www.oltv.cz</a>');
document.write('<a href="<?=$urlVideo?>" style="<?=$cssA?>" target="_blank" title="<?=$video->nazev?>"><?=maxlength($video->nazev,40)?></a>');
document.write(' <a href="<?=$baseUrl?>/dobre-misto-pro-zivot/" target="_blank" id="dalsi-videa" style="<?=$cssDalsi?>">další »</a>');
document.write('</div>');
ACC SHELL 2018