Plugin Directory

Changeset 2958596


Ignore:
Timestamp:
08/26/2023 12:00:04 PM (3 years ago)
Author:
mukulwp
Message:

Fix page/post updated issues

Location:
easy-video-call/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • easy-video-call/trunk/assets/public/css/evcmain.css

    r2750744 r2958596  
     1
     2.evc-video-call{
     3    display: flex;
     4    flex-direction: column;
     5    align-items: center;
     6    justify-content: center;
     7}
    18#stream-wrapper{
    29    background-color: #0077F5;
     
    714#join-btn{
    815    position: relative;
    9     left:44%;
    1016    font-size:18px;
    1117    padding:20px 40px;
  • easy-video-call/trunk/easy-video-call.php

    r2836369 r2958596  
    44Plugin URI: https://getwebexperts.com/easy-video-call
    55Description: Easy Video Call is a simple plugin for making video call easily. To display the video call option simply add this [easy-video-call] shortcode inside your desired location.
    6 <<<<<<< .mine
    7 Version: 1.0.3
    8 ||||||| .r2750356
    9 Version: 1.0
    10 =======
    11 Version: 1.0.2
    12 >>>>>>> .r2834304
     6Version: 1.0.4
    137Author: Get Web Experts
    148Author URI: https://getwebexperts.com/
     
    167161        new evc_Settings_Page();
    168162        //Option Page End
    169         function evc_videocall($attr, $content = null)
    170         {
    171                 ?>
    172    <button id="join-btn"><?php echo __("Start Call", "easy-video-call"); ?></button>
    173     <div id="stream-wrapper">
    174         <div id="video-streams"></div>
    175163
    176         <div id="stream-controls">
    177             <i class="fa-solid fa-xmark" id="leave-btn"></i>
    178             <i class="fa fa-microphone" id="mic-btn" aria-hidden="true "></i>
    179             <i class="fa fa-video-camera" id="camera-btn" aria-hidden="true "></i>
     164       //Shortcode
     165       function evc_videocall_shortcode($attr, $content = null) {
     166        ob_start();
     167        ?>
     168        <div class="evc-video-call">
     169            <button id="join-btn"><?php echo esc_html__("Start Call", "easy-video-call"); ?></button>
     170            <div id="stream-wrapper">
     171                <div id="video-streams"></div>
     172                <div id="stream-controls">
     173                    <i class="fa-solid fa-xmark" id="leave-btn"></i>
     174                    <i class="fa fa-microphone" id="mic-btn" aria-hidden="true"></i>
     175                    <i class="fa fa-video-camera" id="camera-btn" aria-hidden="true"></i>
     176                </div>
     177            </div>
    180178        </div>
    181     </div>
    182 <?php
    183         }
    184         add_shortcode("easy-video-call", "evc_videocall");
    185 
     179        <?php
     180        return ob_get_clean();
     181    }
     182    add_shortcode("easy-video-call", "evc_videocall_shortcode");
  • easy-video-call/trunk/readme.txt

    r2836369 r2958596  
    44Tags: video call, easy video call, agora, agora video call, group video call
    55Requires at least: 4.7
    6 Tested up to: 6.1.1
    7 Stable tag: 1.0.3
     6Tested up to: 6.3.0
     7Stable tag: 1.0.4
    88Requires PHP: 7.0
    99License: GPLv2 or later
Note: See TracChangeset for help on using the changeset viewer.