Current Directory: /home/astoriaah/www/components/com_jce/editor/tiny_mce/plugins/mediamanager/tmpl
Viewing File: /home/astoriaah/www/components/com_jce/editor/tiny_mce/plugins/mediamanager/tmpl/media_video.php
<?php
/**
* @copyright Copyright (c) 2009-2022 Ryan Demmer. All rights reserved
* @license GNU/GPL 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* JCE is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses
*/
defined('JPATH_PLATFORM') or die;
?>
<div class="media_option video">
<h4><?php echo JText::_('WF_MEDIAMANAGER_VIDEO_OPTIONS'); ?></h4>
<div class="uk-form-row uk-grid uk-grid-collapse">
<label for="video_autoplay" class="uk-margin-right"><input type="checkbox" id="video_autoplay" /> <?php echo JText::_('WF_MEDIAMANAGER_LABEL_AUTOPLAY'); ?></label>
<label for="video_controls" class="uk-margin-right"><input type="checkbox" id="video_controls" checked="checked" /> <?php echo JText::_('WF_MEDIAMANAGER_LABEL_CONTROLS'); ?></label>
<label for="video_loop" class="uk-margin-right"><input type="checkbox" id="video_loop" /> <?php echo JText::_('WF_MEDIAMANAGER_LABEL_LOOP'); ?></label>
<label for="video_muted"><input type="checkbox" id="video_muted" /> <?php echo JText::_('WF_MEDIAMANAGER_VIDEO_MUTE'); ?></label>
</div>
<div class="uk-form-row uk-grid uk-grid-small">
<label for="video_preload" class="uk-form-label uk-width-1-5"><?php echo JText::_('WF_MEDIAMANAGER_LABEL_PRELOAD'); ?></label>
<div class="uk-form-controls uk-width-1-5">
<select id="video_preload">
<option value=""><?php echo JText::_('WF_OPTION_AUTO'); ?></option>
<option value="none"><?php echo JText::_('JNONE'); ?></option>
<option value="metadata"><?php echo JText::_('WF_MEDIAMANAGER_LABEL_METADATA'); ?></option>
</select>
</div>
</div>
<div class="uk-form-row uk-grid uk-grid-small">
<label for="video_poster" class="uk-form-label uk-width-1-5"><?php echo JText::_('WF_MEDIAMANAGER_VIDEO_POSTER'); ?></label>
<div class="uk-form-controls uk-width-4-5">
<input type="text" id="video_poster" class="browser image" />
</div>
</div>
<div class="uk-form-row uk-grid uk-grid-small">
<label for="video_source" class="uk-form-label uk-width-1-5"><?php echo JText::_('WF_MEDIAMANAGER_LABEL_SOURCE'); ?></label>
<div class="uk-form-controls uk-width-4-5">
<input type="text" name="video_source[]" class="active" onclick="MediaManagerDialog.setSourceFocus(this);" />
</div>
</div>
<div class="uk-form-row uk-grid uk-grid-small">
<label for="video_source" class="uk-form-label uk-width-1-5"><?php echo JText::_('WF_MEDIAMANAGER_LABEL_SOURCE'); ?></label>
<div class="uk-form-controls uk-width-4-5">
<input type="text" name="video_source[]" onclick="MediaManagerDialog.setSourceFocus(this);" />
</div>
</div>
<div class="uk-form-row uk-grid uk-grid-small">
<label for="video_attributes" class="uk-form-label uk-width-1-5"><?php echo JText::_('WF_LABEL_ATTRIBUTES'); ?></label>
<div class="uk-width-4-5" id="video_attributes">
<div class="uk-form-row uk-repeatable">
<div class="uk-form-controls uk-grid uk-grid-small uk-width-8-10">
<label class="uk-form-label uk-width-1-10"><?php echo JText::_('WF_LABEL_NAME'); ?></label>
<div class="uk-form-controls uk-width-4-10">
<input type="text" name="video_attributes_name[]" />
</div>
<label class="uk-form-label uk-width-1-10"><?php echo JText::_('WF_LABEL_VALUE'); ?></label>
<div class="uk-form-controls uk-width-4-10">
<input type="text" name="video_attributes_value[]" />
</div>
</div>
<div class="uk-form-controls uk-width-1-10 uk-margin-small-left">
<button class="uk-button uk-button-link uk-repeatable-create" aria-label="<?php echo JText::_('WF_LABEL_ADD'); ?>" title="<?php echo JText::_('WF_LABEL_ADD'); ?>"><i class="uk-icon-plus"></i></button>
<button class="uk-button uk-button-link uk-repeatable-delete" aria-label="<?php echo JText::_('WF_LABEL_REMOVE'); ?>" title="<?php echo JText::_('WF_LABEL_REMOVE'); ?>"><i class="uk-icon-trash"></i></button>
</div>
</div>
</div>
</div>
</div>