| Server IP : 104.21.28.229 / Your IP : 216.73.216.142 Web Server : Apache/2 System : Linux hosting8537.lvs 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : mienphi ( 1014) PHP Version : 8.2.14 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/mienphi/public_html/wp-content/plugins/learnpress-live/templates/shortcode/ |
Upload File : |
<?php if ( empty( $results ) || empty( $results['live_value'] ) ) {
return;
}
$data = json_decode( $results['live_value'] );
$start_time = $data->start->dateTime;
$end_time = $data->end->dateTime;
$duration = ( strtotime( $end_time ) - strtotime( $start_time ) ) / 60 ;
?>
<h4><?php echo __('Google Meet Information', 'learnpress-live') ?></h4>
<div class="z-form-row">
<div class="form-group">
<label for="meeting_title"><?php echo __('Meeting Title', 'learnpress-live'); ?></label>
<div class="content">
<?php echo $data->summary; ?>
</div>
</div>
<?php if ( ! empty( $data->description ) ) { ?>
<div class="form-group">
<label for="meeting_start"><?php echo __('Description', 'learnpress-live'); ?></label>
<div class="content">
<?php echo $data->description; ?>
</div>
</div>
<?php }; ?>
<div class="form-group">
<label for="meeting_title"><?php echo __('Duration', 'learnpress-live'); ?></label>
<div class="content">
<?php echo $duration; ?>
</div>
</div>
<div class="form-group">
<label for="meeting-label"><?php echo __('Settings', 'learnpress-live'); ?></label>
<div class="content">
<?php if ( ! empty( $data->guestsCanModify ) ) { ?>
<div class="controls col-md-10">
<label class="checkbox">
<span class="icon-checked"></span>
<?php echo __('Attendees other than the organizer can modify the event', 'learnpress-live'); ?>
</label>
</div>
<?php }; ?>
<?php if( ! empty( $data->transparency ) && $data->transparency == 'transparent' ) { ?>
<div class="controls col-md-10">
<label class="checkbox ">
<span class="icon-checked"></span>
<?php echo __('Unlimited time (for the long conference)', 'learnpress-live'); ?>
</label>
</div>
<?php }; ?>
</div>
</div>
</div>
<div class="z-form-button text-center">
<a href="<?php echo $data->hangoutLink; ?>" target="_blank" class="lp-button button">
<?php echo __( 'Join Now', 'learnpress-live' ); ?>
</a>
</div>