Your IP : 216.73.216.182


Current Path : /var/www/html/components/com_jchat/tmpl/livestreaming/
Upload File :
Current File : /var/www/html/components/com_jchat/tmpl/livestreaming/default_watcher.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 -->

<?php if($this->livestreamingExists || $this->recordingAvailable):?>
<div id="jchat_conference_container" dir="ltr" <?php echo $this->cparams->get('livestreaming_blacktheme', 0) ? 'class="jchat_livestreaming_container jchat_livestreaming_container_watcher jchat_conference_container_blacktheme"' : 'class="jchat_livestreaming_container jchat_livestreaming_container_watcher"'?>>
	<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" class="jchat_livestreaming_controls_watcher"></div>
		<div id="jchat_conference_remotevideo"></div>
		<?php if($this->recordingAvailable):?>
			<div id="jchat_webrtc_watch_recorded_streaming"><?php echo Text::_('COM_JCHAT_WATCH_RECORDED_STREAMING');?></div>
			<div id="jchat_webrtc_pause_recorded_streaming" class="jchat_hidden_btn"><?php echo Text::_('COM_JCHAT_PAUSE_RECORDED_STREAMING');?></div>
		<?php endif;?>
		<input id="jchat_livestreaming_identifier" type="hidden" value="<?php echo $this->livestreamingUniqueIdentifier;?>"/>
	</div>
</div>
<?php else:?>
<div class="jchat_livestreaming_error">
	<div class=" jchat_icon_error"></div>
	<div class=" jchat_tooltip_error"><?php echo Text::_('COM_JCHAT_LIVESTREAMING_DOESNOTEXIST');?></div>
</div>
<?php endif;?>