| Server IP : 54.36.91.62 / Your IP : 216.73.217.94 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/components/com_community/templates/jomsocial/layouts/wall/ |
Upload File : |
<?php
/**
* @copyright (C) 2014 iJoomla, Inc. - All rights reserved.
* @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html)
* @author iJoomla.com <webmaster@ijoomla.com>
* @url https://www.jomsocial.com/license-agreement
* The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0
* More info at https://www.jomsocial.com/license-agreement
*/
use Joomla\CMS\Language\Text;
defined('_JEXEC') or die();
$permissionIcons = array(
PRIVACY_PUBLIC => 'joms-icon-earth',
PRIVACY_MEMBERS => 'joms-icon-users',
PRIVACY_FRIENDS => 'joms-icon-user',
PRIVACY_PRIVATE => 'joms-icon-lock'
);
$permissionIcon = $permissionIcons[ isset($permissionIcons[$permission]) ? $permission : PRIVACY_PUBLIC ];
?>
<div class="joms-stream__header">
<div class="joms-avatar--stream <?php echo CUserHelper::onlineIndicator($creator); ?>">
<a href="<?php echo CRoute::_('index.php?option=com_community&view=profile&userid=' . $creator->id); ?>">
<img src="<?php echo $creator->getThumbAvatar(); ?>" alt="<?php echo $creator->getDisplayName(); ?>" data-author="<?php echo $creator->id; ?>">
</a>
</div>
<div class="joms-stream__meta">
<a href="<?php echo CRoute::_('index.php?option=com_community&view=profile&userid=' . $creator->id); ?>"
class="joms-stream__user"><?php echo $creator->getDisplayName(false, true); ?></a>
<span class="joms-stream__time">
<small><?php echo $created; ?></small>
<svg class="joms-icon" viewBox="0 0 16 16">
<use xlink:href="<?php echo CRoute::getURI(); ?>#<?php echo $permissionIcon; ?>"></use>
</svg>
</span>
</div>
</div>
<div class="joms-stream__body">
<?php if (isset($videoTitle) && $videoTitle) { ?>
<h5><?php echo $videoTitle; ?></h5>
<?php } ?>
<div class="joms-js--description"></div>
<div class="joms-js--tag-info" style="margin-top:10px;"></div>
<?php if (isset($enableVideoLocation) && $enableVideoLocation) { ?>
<div style="margin-top:10px;"><?php echo Text::_('COM_COMMUNITY_VIDEOS_LOCATION'); ?>:<br /><?php echo $videoLocation; ?></div>
<?php } ?>
<?php if (isset($enableAlbumLocation) && $enableAlbumLocation) { ?>
<div style="margin-top:10px;"><?php echo Text::_('COM_COMMUNITY_PHOTOS_ALBUM_TAKEN_AT_MODAL'); ?>:<br /><?php echo $albumLocation; ?></div>
<?php } ?>
</div>