2017-11-11 22:18:13 +00:00
|
|
|
<?php
|
2018-05-18 06:28:27 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
|
|
|
* @author Llewellyn van der Merwe <http://www.joomlacomponentbuilder.com>
|
|
|
|
* @github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
|
2019-02-23 13:28:54 +00:00
|
|
|
* @copyright Copyright (C) 2015 - 2019 Vast Development Method. All rights reserved.
|
2018-05-18 06:28:27 +00:00
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
2017-11-11 22:18:13 +00:00
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
|
|
|
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');
|
|
|
|
JHtml::_('behavior.tooltip');
|
|
|
|
JHtml::_('behavior.formvalidation');
|
|
|
|
JHtml::_('formbehavior.chosen', 'select');
|
|
|
|
JHtml::_('behavior.keepalive');
|
2018-09-19 12:51:59 +00:00
|
|
|
$componentParams = $this->params; // will be removed just use $this->params instead
|
2017-11-11 22:18:13 +00:00
|
|
|
?>
|
|
|
|
<script type="text/javascript">
|
|
|
|
// waiting spinner
|
|
|
|
var outerDiv = jQuery('body');
|
|
|
|
jQuery('<div id="loading"></div>')
|
|
|
|
.css("background", "rgba(255, 255, 255, .8) url('components/com_componentbuilder/assets/images/import.gif') 50% 15% no-repeat")
|
|
|
|
.css("top", outerDiv.position().top - jQuery(window).scrollTop())
|
|
|
|
.css("left", outerDiv.position().left - jQuery(window).scrollLeft())
|
|
|
|
.css("width", outerDiv.width())
|
|
|
|
.css("height", outerDiv.height())
|
|
|
|
.css("position", "fixed")
|
|
|
|
.css("opacity", "0.80")
|
|
|
|
.css("-ms-filter", "progid:DXImageTransform.Microsoft.Alpha(Opacity = 80)")
|
|
|
|
.css("filter", "alpha(opacity = 80)")
|
|
|
|
.css("display", "none")
|
|
|
|
.appendTo(outerDiv);
|
|
|
|
jQuery('#loading').show();
|
|
|
|
// when page is ready remove and show
|
|
|
|
jQuery(window).load(function() {
|
|
|
|
jQuery('#componentbuilder_loader').fadeIn('fast');
|
|
|
|
jQuery('#loading').hide();
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<div id="componentbuilder_loader" style="display: none;">
|
2018-08-07 12:25:26 +00:00
|
|
|
<form action="<?php echo JRoute::_('index.php?option=com_componentbuilder&layout=edit&id='. (int) $this->item->id . $this->referral); ?>" method="post" name="adminForm" id="adminForm" class="form-validate" enctype="multipart/form-data">
|
2017-11-11 22:18:13 +00:00
|
|
|
|
2017-11-26 00:29:08 +00:00
|
|
|
<?php echo JLayoutHelper::render('library.behaviour_above', $this); ?>
|
2017-11-11 22:18:13 +00:00
|
|
|
<div class="form-horizontal">
|
|
|
|
|
2017-11-26 00:29:08 +00:00
|
|
|
<?php echo JHtml::_('bootstrap.startTabSet', 'libraryTab', array('active' => 'behaviour')); ?>
|
2017-11-11 22:18:13 +00:00
|
|
|
|
2017-11-26 00:29:08 +00:00
|
|
|
<?php echo JHtml::_('bootstrap.addTab', 'libraryTab', 'behaviour', JText::_('COM_COMPONENTBUILDER_LIBRARY_BEHAVIOUR', true)); ?>
|
2017-11-11 22:18:13 +00:00
|
|
|
<div class="row-fluid form-horizontal-desktop">
|
2017-12-03 18:09:04 +00:00
|
|
|
<div class="span6">
|
|
|
|
<?php echo JLayoutHelper::render('library.behaviour_left', $this); ?>
|
|
|
|
</div>
|
|
|
|
<div class="span6">
|
2017-11-26 00:29:08 +00:00
|
|
|
<?php echo JLayoutHelper::render('library.behaviour_right', $this); ?>
|
2017-11-11 22:18:13 +00:00
|
|
|
</div>
|
2017-11-26 00:29:08 +00:00
|
|
|
</div>
|
|
|
|
<div class="row-fluid form-horizontal-desktop">
|
|
|
|
<div class="span12">
|
|
|
|
<?php echo JLayoutHelper::render('library.behaviour_fullwidth', $this); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php echo JHtml::_('bootstrap.endTab'); ?>
|
|
|
|
|
|
|
|
<?php echo JHtml::_('bootstrap.addTab', 'libraryTab', 'files_folders_urls', JText::_('COM_COMPONENTBUILDER_LIBRARY_FILES_FOLDERS_URLS', true)); ?>
|
|
|
|
<div class="row-fluid form-horizontal-desktop">
|
|
|
|
</div>
|
|
|
|
<div class="row-fluid form-horizontal-desktop">
|
|
|
|
<div class="span12">
|
|
|
|
<?php echo JLayoutHelper::render('library.files_folders_urls_fullwidth', $this); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php echo JHtml::_('bootstrap.endTab'); ?>
|
|
|
|
|
|
|
|
<?php echo JHtml::_('bootstrap.addTab', 'libraryTab', 'config', JText::_('COM_COMPONENTBUILDER_LIBRARY_CONFIG', true)); ?>
|
|
|
|
<div class="row-fluid form-horizontal-desktop">
|
|
|
|
</div>
|
|
|
|
<div class="row-fluid form-horizontal-desktop">
|
|
|
|
<div class="span12">
|
|
|
|
<?php echo JLayoutHelper::render('library.config_fullwidth', $this); ?>
|
2017-11-11 22:18:13 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php echo JHtml::_('bootstrap.endTab'); ?>
|
|
|
|
|
2018-01-15 15:54:05 +00:00
|
|
|
<?php echo JHtml::_('bootstrap.addTab', 'libraryTab', 'linked', JText::_('COM_COMPONENTBUILDER_LIBRARY_LINKED', true)); ?>
|
|
|
|
<div class="row-fluid form-horizontal-desktop">
|
|
|
|
</div>
|
|
|
|
<div class="row-fluid form-horizontal-desktop">
|
|
|
|
<div class="span12">
|
|
|
|
<?php echo JLayoutHelper::render('library.linked_fullwidth', $this); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php echo JHtml::_('bootstrap.endTab'); ?>
|
|
|
|
|
2018-08-23 21:51:09 +00:00
|
|
|
<?php $this->ignore_fieldsets = array('details','metadata','vdmmetadata','accesscontrol'); ?>
|
|
|
|
<?php $this->tab_name = 'libraryTab'; ?>
|
|
|
|
<?php echo JLayoutHelper::render('joomla.edit.params', $this); ?>
|
|
|
|
|
2017-11-11 22:18:13 +00:00
|
|
|
<?php if ($this->canDo->get('library.delete') || $this->canDo->get('core.edit.created_by') || $this->canDo->get('library.edit.state') || $this->canDo->get('core.edit.created')) : ?>
|
|
|
|
<?php echo JHtml::_('bootstrap.addTab', 'libraryTab', 'publishing', JText::_('COM_COMPONENTBUILDER_LIBRARY_PUBLISHING', true)); ?>
|
|
|
|
<div class="row-fluid form-horizontal-desktop">
|
|
|
|
<div class="span6">
|
|
|
|
<?php echo JLayoutHelper::render('library.publishing', $this); ?>
|
|
|
|
</div>
|
|
|
|
<div class="span6">
|
|
|
|
<?php echo JLayoutHelper::render('library.publlshing', $this); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php echo JHtml::_('bootstrap.endTab'); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php if ($this->canDo->get('core.admin')) : ?>
|
|
|
|
<?php echo JHtml::_('bootstrap.addTab', 'libraryTab', 'permissions', JText::_('COM_COMPONENTBUILDER_LIBRARY_PERMISSION', true)); ?>
|
|
|
|
<div class="row-fluid form-horizontal-desktop">
|
|
|
|
<div class="span12">
|
|
|
|
<fieldset class="adminform">
|
|
|
|
<div class="adminformlist">
|
|
|
|
<?php foreach ($this->form->getFieldset('accesscontrol') as $field): ?>
|
|
|
|
<div>
|
|
|
|
<?php echo $field->label; echo $field->input;?>
|
|
|
|
</div>
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php echo JHtml::_('bootstrap.endTab'); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php echo JHtml::_('bootstrap.endTabSet'); ?>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<input type="hidden" name="task" value="library.edit" />
|
|
|
|
<?php echo JHtml::_('form.token'); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-11-26 00:29:08 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
<?php echo JLayoutHelper::render('library.behaviour_under', $this); ?>
|
2017-11-11 22:18:13 +00:00
|
|
|
</form>
|
2017-11-26 00:29:08 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
2018-03-09 03:26:44 +00:00
|
|
|
// #jform_how listeners for how_vvvvwai function
|
|
|
|
jQuery('#jform_how').on('keyup',function()
|
|
|
|
{
|
|
|
|
var how_vvvvwai = jQuery("#jform_how").val();
|
|
|
|
vvvvwai(how_vvvvwai);
|
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
|
|
|
var how_vvvvwai = jQuery("#jform_how").val();
|
|
|
|
vvvvwai(how_vvvvwai);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
// #jform_how listeners for how_vvvvwaj function
|
|
|
|
jQuery('#jform_how').on('keyup',function()
|
|
|
|
{
|
|
|
|
var how_vvvvwaj = jQuery("#jform_how").val();
|
|
|
|
vvvvwaj(how_vvvvwaj);
|
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
|
|
|
var how_vvvvwaj = jQuery("#jform_how").val();
|
|
|
|
vvvvwaj(how_vvvvwaj);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2018-05-11 04:08:14 +00:00
|
|
|
// #jform_how listeners for how_vvvvwak function
|
|
|
|
jQuery('#jform_how').on('keyup',function()
|
|
|
|
{
|
|
|
|
var how_vvvvwak = jQuery("#jform_how").val();
|
|
|
|
vvvvwak(how_vvvvwak);
|
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
|
|
|
var how_vvvvwak = jQuery("#jform_how").val();
|
|
|
|
vvvvwak(how_vvvvwak);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2018-07-06 13:46:30 +00:00
|
|
|
// #jform_how listeners for how_vvvvwal function
|
|
|
|
jQuery('#jform_how').on('keyup',function()
|
|
|
|
{
|
|
|
|
var how_vvvvwal = jQuery("#jform_how").val();
|
|
|
|
vvvvwal(how_vvvvwal);
|
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
|
|
|
var how_vvvvwal = jQuery("#jform_how").val();
|
|
|
|
vvvvwal(how_vvvvwal);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2018-08-14 08:25:46 +00:00
|
|
|
// #jform_how listeners for how_vvvvwam function
|
|
|
|
jQuery('#jform_how').on('keyup',function()
|
|
|
|
{
|
|
|
|
var how_vvvvwam = jQuery("#jform_how").val();
|
|
|
|
vvvvwam(how_vvvvwam);
|
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
|
|
|
var how_vvvvwam = jQuery("#jform_how").val();
|
|
|
|
vvvvwam(how_vvvvwam);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2018-08-23 01:37:42 +00:00
|
|
|
// #jform_how listeners for how_vvvvwan function
|
|
|
|
jQuery('#jform_how').on('keyup',function()
|
|
|
|
{
|
|
|
|
var how_vvvvwan = jQuery("#jform_how").val();
|
|
|
|
vvvvwan(how_vvvvwan);
|
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
|
|
|
var how_vvvvwan = jQuery("#jform_how").val();
|
|
|
|
vvvvwan(how_vvvvwan);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2019-01-29 14:43:27 +00:00
|
|
|
// #jform_how listeners for how_vvvvwao function
|
|
|
|
jQuery('#jform_how').on('keyup',function()
|
|
|
|
{
|
|
|
|
var how_vvvvwao = jQuery("#jform_how").val();
|
|
|
|
vvvvwao(how_vvvvwao);
|
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
|
|
|
var how_vvvvwao = jQuery("#jform_how").val();
|
|
|
|
vvvvwao(how_vvvvwao);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
// #jform_type listeners for type_vvvvwap function
|
2017-12-03 18:09:04 +00:00
|
|
|
jQuery('#jform_type').on('keyup',function()
|
|
|
|
{
|
2019-01-29 14:43:27 +00:00
|
|
|
var type_vvvvwap = jQuery("#jform_type input[type='radio']:checked").val();
|
|
|
|
vvvvwap(type_vvvvwap);
|
2017-12-03 18:09:04 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_type',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2019-01-29 14:43:27 +00:00
|
|
|
var type_vvvvwap = jQuery("#jform_type input[type='radio']:checked").val();
|
|
|
|
vvvvwap(type_vvvvwap);
|
2017-12-03 18:09:04 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2017-11-26 00:29:08 +00:00
|
|
|
|
2018-03-11 02:44:43 +00:00
|
|
|
|
2018-04-13 15:33:04 +00:00
|
|
|
<?php $numberAddconditions = range(0, count( (array) $this->item->addconditions) + 3, 1);?>
|
2017-11-26 00:29:08 +00:00
|
|
|
|
|
|
|
// for the values already set
|
|
|
|
jQuery(document).ready(function(){
|
|
|
|
<?php foreach($numberAddconditions as $fieldNr): ?>
|
|
|
|
jQuery('#adminForm').on('change', '#jform_addconditions__addconditions<?php echo $fieldNr ?>__option_field',function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
getFieldSelectOptions(<?php echo $fieldNr ?>);
|
|
|
|
});
|
|
|
|
<?php endforeach; ?>
|
|
|
|
jQuery(document).on('subform-row-add', function(event, row){
|
|
|
|
var groupName = jQuery(row).data('group');
|
|
|
|
var fieldName = groupName.replace(/([0-9])/g, '');
|
|
|
|
var fieldNr = groupName.replace(/([A-z_])/g, '');
|
|
|
|
if ('addconditions' === fieldName) {
|
|
|
|
jQuery('#adminForm').on('change', '#jform_addconditions__addconditions'+fieldNr+'__option_field',function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
getFieldSelectOptions(fieldNr);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2018-02-27 12:17:38 +00:00
|
|
|
|
2017-11-26 00:29:08 +00:00
|
|
|
<?php
|
|
|
|
$app = JFactory::getApplication();
|
|
|
|
?>
|
|
|
|
function JRouter(link) {
|
|
|
|
<?php
|
|
|
|
if ($app->isSite())
|
|
|
|
{
|
|
|
|
echo 'var url = "'.JURI::root().'";';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
echo 'var url = "";';
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
return url+link;
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
|
|
|
|
2017-11-26 00:29:08 +00:00
|
|
|
// nice little dot trick :)
|
|
|
|
jQuery(document).ready( function($) {
|
|
|
|
var x=0;
|
|
|
|
setInterval(function() {
|
|
|
|
var dots = "";
|
|
|
|
x++;
|
|
|
|
for (var y=0; y < x%8; y++) {
|
|
|
|
dots+=".";
|
|
|
|
}
|
|
|
|
$(".loading-dots").text(dots);
|
|
|
|
} , 500);
|
2018-02-27 12:17:38 +00:00
|
|
|
});
|
2017-11-26 00:29:08 +00:00
|
|
|
</script>
|