31 lines
1.1 KiB
PHP
31 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* The template for displaying shortcode join links
|
|
*
|
|
* This template can be overridden by copying it to yourtheme/video-conferencing-zoom/shortcode/join-links.php
|
|
*
|
|
* @author Deepen Bajracharya
|
|
* @created_on 02/19/2020
|
|
* @since 3.1.2
|
|
* @modified 3.3.1
|
|
*/
|
|
|
|
global $meetings;
|
|
if ( ! empty( $meetings['browser_url'] ) ) { ?>
|
|
|
|
<p align="center" style="margin:0px;padding-bottom:0px">
|
|
<button type="button" style="background-color: #008CBA;">
|
|
<a style="color:white;" target="__blank" href="<?php echo $meetings['browser_url']; ?>"><strong> ACESSO A SALA VIRTUAL </strong></a></button>
|
|
</p>
|
|
|
|
<?php } ?>
|
|
|
|
<?php if ( ! empty( $meetings['join_uri'] ) ) {
|
|
?>
|
|
<hr>
|
|
<p align="center">
|
|
<?php _e( 'Problemas no acesso via Web?', 'video-conferencing-with-zoom-api' ); ?></td>
|
|
|
|
<a class="btn-join-link-shortcode" target="_blank" href="<?php echo $meetings['join_uri']; ?>" title="Acesso via ZOOM APP"><?php _e( 'Conecte-se pelo Aplicativo da ZOOM', 'video-conferencing-with-zoom-api' ); ?></a></p>
|
|
|
|
<?php } ?>
|