| Server IP : 68.178.247.200 / Your IP : 216.73.217.50 Web Server : Apache System : Linux p3plzcpnl489463.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : x9dppmxs4rgd ( 8559391) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/x9dppmxs4rgd/public_html/wp-content/plugins/youtube-showcase/includes/admin/ |
Upload File : |
<?php
/**
* Settings Glossary Functions
*
* @package YOUTUBE_SHOWCASE
* @since WPAS 4.0
*/
if (!defined('ABSPATH')) exit;
add_action('youtube_showcase_settings_glossary', 'youtube_showcase_settings_glossary');
/**
* Display glossary information
* @since WPAS 4.0
*
* @return html
*/
function youtube_showcase_settings_glossary() {
global $title;
?>
<div class="wrap">
<h2><?php echo $title; ?></h2>
<p><?php _e('YouTube Showcase is a powerful but simple-to-use YouTube video gallery plugin with responsive frontend.', 'youtube-showcase'); ?></p>
<p><?php _e('The below are the definitions of entities, attributes, and terms included in Youtube Showcase.', 'youtube-showcase'); ?></p>
<div id="glossary" class="accordion-container">
<ul class="outer-border">
<li id="emd_video" class="control-section accordion-section open">
<h3 class="accordion-section-title hndle" tabindex="1"><?php _e('Videos', 'youtube-showcase'); ?></h3>
<div class="accordion-section-content">
<div class="inside">
<table class="form-table"><p class"lead"><?php _e('Videos are YouTube videos identified by Video ID.', 'youtube-showcase'); ?></p><tr><th style='font-size: 1.1em;color:cadetblue;border-bottom: 1px dashed;padding-bottom: 10px;' colspan=2><div><?php _e('Attributes', 'youtube-showcase'); ?></div></th></tr>
<tr>
<th><?php _e('Title', 'youtube-showcase'); ?></th>
<td><?php _e(' Title is a required field. Title does not have a default value. ', 'youtube-showcase'); ?></td>
</tr>
<tr>
<th><?php _e('Content', 'youtube-showcase'); ?></th>
<td><?php _e(' Content does not have a default value. ', 'youtube-showcase'); ?></td>
</tr>
<tr>
<th><?php _e('Excerpt', 'youtube-showcase'); ?></th>
<td><?php _e(' Excerpt does not have a default value. ', 'youtube-showcase'); ?></td>
</tr>
<tr>
<th><?php _e('Video Key', 'youtube-showcase'); ?></th>
<td><?php _e('<p>The unique 11 digit alphanumeric video key found on the YouTube video. For example; in https://www.youtube.com/watch?v=uVgWZd7oGOk. uVgWZd7oGOk is the video id.</p> Video Key is a required field. Being a unique identifier, it uniquely distinguishes each instance of Video entity. Video Key is filterable in the admin area. Video Key does not have a default value. ', 'youtube-showcase'); ?></td>
</tr>
<tr>
<th><?php _e('Featured', 'youtube-showcase'); ?></th>
<td><?php _e('Adds the video to featured video list. Featured is filterable in the admin area. Featured does not have a default value. ', 'youtube-showcase'); ?></td>
</tr>
<tr>
<th><?php _e('Video Image Resolution', 'youtube-showcase'); ?></th>
<td><?php _e('<p>Sets the resolution of video thumbnail image. The image size for each option;<br />
<strong>Medium</strong> - 320 x 180, <strong>High</strong> - 480x360, <strong>Standard</strong> - 640 x 480, <strong>Max</strong> -1280 x 720</p> Video Image Resolution has a default value of <b>\'mq\'</b>.Video Image Resolution is displayed as a dropdown and has predefined values of: sd, mq, hq, maxres.', 'youtube-showcase'); ?></td>
</tr>
<tr>
<th><?php _e('Video Autoplay', 'youtube-showcase'); ?></th>
<td><?php _e('When set the player starts video automatically. It may not work in all devices due to vendor preferences. Video Autoplay does not have a default value. ', 'youtube-showcase'); ?></td>
</tr><tr><th style='font-size:1.1em;color:cadetblue;border-bottom: 1px dashed;padding-bottom: 10px;' colspan=2><div><?php _e('Taxonomies', 'youtube-showcase'); ?></div></th></tr>
<tr>
<th><?php _e('Category', 'youtube-showcase'); ?></th>
<td><?php _e(' Category supports parent-child relationships like categories', 'youtube-showcase'); ?>. <?php _e('Category does not have a default value', 'youtube-showcase'); ?>.<div class="taxdef-block"><p><?php _e('There are no preset values for <b>Category.</b>', 'youtube-showcase'); ?></p></div></td>
</tr>
<tr>
<th><?php _e('Tag', 'youtube-showcase'); ?></th>
<td><?php _e(' Tag supports parent-child relationships like categories', 'youtube-showcase'); ?>. <?php _e('Tag does not have a default value', 'youtube-showcase'); ?>.<div class="taxdef-block"><p><?php _e('There are no preset values for <b>Tag.</b>', 'youtube-showcase'); ?></p></div></td>
</tr>
</table>
</div>
</div>
</li>
</ul>
</div>
</div>
<?php
}