core/api/modules/foto_mini_page/index.php

34 lines
705 B
PHP
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/*
13.05.2021
Мини страница фотографии
*/
$mod = new main( $smarty, $settings );
$mod -> db = $db;
$mod -> install();
//получаем все о фотке
unset($a);
$a['id']=ID;
$foto=$db->get_massiv('foto_img', $a, '', 1);
//print_r($foto);
//получаем данные об авторе
unset($a);
$a['id']=$foto[0]['user_id'];
$avtor=$db->get_massiv('users', $a, '', 1);
//получаем инфу об альбоме
unset($a);
$a['id']=$foto[0]['album_id'];
$album=$db->get_massiv('foto_albums', $a, '', 1);
$smarty -> assign( 'avtor', $avtor );
$smarty -> assign( 'album', $album );
$smarty -> assign( 'foto', $foto );
?>