Your IP : 216.73.216.158


Current Path : /home/megadansyp/www/plugins/fwgallerytype/video/layouts/site/video/
Upload File :
Current File : /home/megadansyp/www/plugins/fwgallerytype/video/layouts/site/video/get_file_info.php

<?php
/**
 * FW Super Gallery 2.4.0
 * @copyright (C) 2020 Fastw3b
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
 * @link http://www.fastw3b.net/ Official website
 **/

defined( '_JEXEC' ) or die( 'Restricted access' );

$view = $displayData['view'];
$row = $displayData['row'];

if (!empty($row->_video_size) or !empty($row->_video_duration) or (!empty($row->_video_width) and !empty($row->_video_height))) {
    $need_space = false;
    if (!empty($row->_video_duration)) {
?>
<i class="fal fa-clock"></i> <?php echo preg_replace('#^00\:#', '', $row->_video_duration); ?>
<?php
        $need_space = true;
    }
    if (!empty($row->_video_width) and !empty($row->_video_height)) {
?>
<i class="fal fa-expand-arrows <?php if ($need_space) { ?> ml-2<?php } ?>"></i> <?php echo $row->_video_width; ?> * <?php echo $row->_video_height; ?>px<?php
        $need_space = true;
    }
    if (!empty($row->_video_size)) {
?>
<i class="fal fa-hdd <?php if ($need_space) { ?> ml-2<?php } ?>"></i> <?php echo fwgHelper::humanFileSize($row->_video_size); ?>
<?php
    }
} else {
    ?>&nbsp;<?php
}