| Current Path : /var/www/html/components/com_jchat/tmpl/livestreaming/ |
| Current File : /var/www/html/components/com_jchat/tmpl/livestreaming/default.php |
<?php
/**
* @package JCHAT::LIVESTREAMING::components::com_jchat
* @subpackage views
* @subpackage livestreaming
* @subpackage tmpl
* @author Joomla! Extensions Store
* @copyright (C) 2024 - Joomla! Extensions Store
* @license GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html
*/
defined('_JEXEC') or die('Restricted access');
use Joomla\CMS\Language\Text;
?>
<div class="item-page<?php echo $this->cparams->get('pageclass_sfx', null);?>">
<?php if ($this->cparams->get('show_page_heading', 1)) : ?>
<div class="page-header">
<h3> <?php echo $this->escape($this->cparams->get('page_heading', $this->menuTitle)); ?> </h3>
</div>
<?php endif;?>
</div>
<!-- Livestreaming view -->
<div id="jchat_conference_container" dir="ltr" <?php echo $this->cparams->get('livestreaming_blacktheme', 0) ? 'class="jchat_livestreaming_container jchat_livestreaming_container_broadcaster jchat_conference_container_blacktheme"' : 'class="jchat_livestreaming_container jchat_livestreaming_container_broadcaster"'?>>
<div id="jchat_left_userscolumn">
<div class="jchat_userslist_myusername"></div>
<?php if($this->cparams->get('show_search', 1)):?>
<input id="jchat_leftusers_search" type="text" placeholder="<?php echo Text::_('COM_JCHAT_SEARCH');?>" value="">
<?php endif; ?>
<?php if($this->cparams->get('livestreaming_maximized', 1)):?>
<span id="jchat_conference_maximizebutton"></span>
<?php endif; ?>
<ul id="jchat_conference_userslist" class="jchat_livestreaming_userslist"></ul>
</div>
<div id="jchat_right_videocolumn">
<div id="jchat_conference_controls"></div>
<div id="jchat_conference_remotevideos"></div>
<input id="jchat_livestreaming_identifier" type="hidden" value="<?php echo $this->livestreamingUniqueIdentifier;?>"/>
</div>
</div>