inital commit

This commit is contained in:
2021-07-28 00:25:39 +02:00
commit e7133a1d63
64 changed files with 5267 additions and 0 deletions

View File

@ -0,0 +1,18 @@
<?php
/**
* Open Source Social Network
*
* @package (Informatikon.com).ossn
* @author OSSN Core Team <info@opensource-socialnetwork.org>
* @copyright 2014 iNFORMATIKON TECHNOLOGIES
* @license General Public Licence http://www.opensource-socialnetwork.org/licence
* @link http://www.opensource-socialnetwork.org/licence
*/
$friend = $params['entity'];
?>
<div class="friends-list-item" onClick="Ossn.ChatnewTab(<?php echo $friend->guid; ?>);">
<div class="friends-item-inner">
<div class="icon"><img class="ossn-chat-icon-online" src="<?php echo $params['icon']; ?>"/></div>
<div class="name"><?php echo $friend->fullname; ?></div>
</div>
</div>

View File

@ -0,0 +1,24 @@
<?php
/**
* Open Source Social Network
*
* @package (Informatikon.com).ossn
* @author OSSN Core Team <info@opensource-socialnetwork.org>
* @copyright 2014 iNFORMATIKON TECHNOLOGIES
* @license General Public Licence http://www.opensource-socialnetwork.org/licence
* @link http://www.opensource-socialnetwork.org/licence
*/
$friend = $params['entity'];
if ($friend->isOnline(10)) {
$status = 'ossn-chat-icon-online';
} else {
$status = '';
}
?>
<div class="friends-list-item" id="friend-list-item-<?php echo $friend->guid; ?>"
onClick="Ossn.ChatnewTab(<?php echo $friend->guid; ?>);">
<div class="friends-item-inner">
<div class="icon"><img class="<?php echo $status; ?> ustatus" src="<?php echo $params['icon']; ?>"/></div>
<div class="name"><?php echo $friend->fullname; ?></div>
</div>
</div>