Changeset 2958596
- Timestamp:
- 08/26/2023 12:00:04 PM (3 years ago)
- Location:
- easy-video-call/trunk
- Files:
-
- 3 edited
-
assets/public/css/evcmain.css (modified) (2 diffs)
-
easy-video-call.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
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 } 1 8 #stream-wrapper{ 2 9 background-color: #0077F5; … … 7 14 #join-btn{ 8 15 position: relative; 9 left:44%;10 16 font-size:18px; 11 17 padding:20px 40px; -
easy-video-call/trunk/easy-video-call.php
r2836369 r2958596 4 4 Plugin URI: https://getwebexperts.com/easy-video-call 5 5 Description: 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 6 Version: 1.0.4 13 7 Author: Get Web Experts 14 8 Author URI: https://getwebexperts.com/ … … 167 161 new evc_Settings_Page(); 168 162 //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>175 163 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> 180 178 </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 4 4 Tags: video call, easy video call, agora, agora video call, group video call 5 5 Requires at least: 4.7 6 Tested up to: 6. 1.17 Stable tag: 1.0. 36 Tested up to: 6.3.0 7 Stable tag: 1.0.4 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later
Note: See TracChangeset
for help on using the changeset viewer.