File manager - Edit - /home/capoccitel/www/administrator/components/com_rsform/views/conditions/tmpl/edit.php
Back
<?php /** * @package RSForm! Pro * @copyright (C) 2007-2014 www.rsjoomla.com * @license GPL, http://www.gnu.org/copyleft/gpl.html */ defined('_JEXEC') or die('Restricted access'); ?> <script type="text/javascript"> if (window.opener && window.opener.showConditions) window.opener.showConditions(<?php echo $this->formId; ?>); <?php if ($this->close) { ?> rsform_close_box(); <?php } ?> function rsform_add_condition() { var $ = RSFormPro.$; <?php if (!$this->optionFields) { ?> alert('<?php echo JText::_('RSFP_CONDITION_PLEASE_ADD_OPTIONS', true); ?>'); <?php } else { ?> var new_condition = $('<p>'); var spacer = $('<span>', {'class': 'rsform_spacer'}).html(' '); var spacer2 = $('<span>', {'class': 'rsform_spacer'}).html(' '); var spacer3 = $('<span>', {'class': 'rsform_spacer'}).html(' '); // fields var fields = document.createElement('select'); fields.name = 'detail_component_id[]'; fields.setAttribute('name', 'detail_component_id[]'); fields.onchange = rsform_change_field; <?php foreach ($this->optionFields as $field) { ?> var option = document.createElement('option'); option.value = '<?php echo $field->ComponentId; ?>'; option.text = '<?php echo addslashes($field->ComponentName); ?>'; fields.options.add(option); <?php } ?> // operator var operator = document.createElement('select'); operator.name = 'operator[]'; var option = document.createElement('option'); option.value = 'is'; option.text = '<?php echo JText::_('RSFP_CONDITION_IS', true); ?>'; operator.options.add(option); var option = document.createElement('option'); option.value = 'is_not'; option.text = '<?php echo JText::_('RSFP_CONDITION_IS_NOT', true); ?>'; operator.options.add(option); // values var values = document.createElement('select'); values.name = 'value[]'; selected_values = rsform_get_field_value(<?php echo $this->optionFields[0]->ComponentId; ?>); if (selected_values != false) { for (var i=0; i<selected_values.length; i++) { var option = document.createElement('option'); option.value = selected_values[i].value; option.text = selected_values[i].text; values.options.add(option); } } // remove button remove = $('<a>', { 'href': 'javascript:void(0);' }).append($('<img>', { 'class': 'rsform_align_middle', 'src': 'components/com_rsform/assets/images/close.png' })).click(function() { $(this).parent('p').remove(); }); new_condition.append(fields, spacer, operator, spacer2, values, spacer3, remove); $('#rsform_conditions').append(new_condition); <?php } ?> } function rsform_get_field_value(id) { var fields = []; <?php foreach ($this->optionFields as $field) { ?> fields['<?php echo $field->ComponentId; ?>'] = []; <?php foreach ($field->PropertyValue as $value) { ?> fields['<?php echo $field->ComponentId; ?>'].push({'value': '<?php echo addslashes($value[0]); ?>', 'text': '<?php echo addslashes($value[1]); ?>'}); <?php } ?> <?php } ?> return typeof(fields[id]) != 'undefined' ? fields[id] : false; } function rsform_change_field() { var $ = RSFormPro.$; //parent = $(this).parent('p'); values = $(this).parent().children('select')[2]; values.options.length = 0; selected_values = rsform_get_field_value(this.value); if (selected_values != false) { for (var i=0; i<selected_values.length; i++) { var option = document.createElement('option'); option.value = selected_values[i].value; option.text = selected_values[i].text; values.options.add(option); } } } function rsform_close_box() { window.close(); } </script> <style type="text/css"> .rsform_spacer { margin-right: 3px; } </style> <p><?php echo JText::sprintf('RSFP_YOU_ARE_EDITING_CONDITIONS_IN', $this->escape($this->lang)); ?></p> <form name="adminForm" id="adminForm" method="post" action="index.php"> <div id="rsform_conditions"> <p> <button class="btn btn-success pull-left" onclick="submitform('apply');" type="button"><?php echo JText::_('JAPPLY'); ?></button> <button class="btn btn-success pull-left" onclick="submitform('save');" type="button"><?php echo JText::_('JSAVE'); ?></button> <button class="btn pull-left" onclick="rsform_close_box();" type="button"><?php echo JText::_('JCANCEL'); ?></button> </p> <p><br /><br /></p> <span class="rsform_clear_both"></span> <p> <?php echo JText::sprintf('RSFP_SHOW_FIELD_IF_THE_FOLLOWING_MATCH', $this->lists['action'], $this->lists['block'], $this->lists['allfields'], $this->lists['condition']); ?> <a href="javascript: void(0);" onclick="rsform_add_condition();"><img class="rsform_align_middle" src="components/com_rsform/assets/images/add.png" alt="" /></a> </p> <?php if ($this->condition->details) { ?> <?php foreach ($this->condition->details as $detail) { ?> <p> <?php echo JHTML::_('select.genericlist', $this->optionFields, 'detail_component_id[]', '', 'ComponentId', 'ComponentName', $detail->component_id); ?> <span class="rsform_spacer"> </span> <?php echo JHTML::_('select.genericlist', $this->operators, 'operator[]', '', 'value', 'text', $detail->operator); ?> <span class="rsform_spacer"> </span> <select name="value[]"> <?php foreach ($this->optionFields as $field) { ?> <?php if ($field->ComponentId != $detail->component_id) continue; ?> <?php foreach ($field->PropertyValue as $value) { ?> <option <?php if ($value[0] == $detail->value) { ?>selected="selected"<?php } ?> value="<?php echo $this->escape($value[0]); ?>"><?php echo $this->escape($value[1]); ?></option> <?php } ?> <?php } ?> </select> <span class="rsform_spacer"> </span> <a href="javascript:void(0);" onclick="RSFormPro.$(this).parent('p').remove();"><img class="rsform_align_middle" src="components/com_rsform/assets/images/close.png" /></a> </p> <?php } ?> <?php } ?> </div> <?php echo JHTML::_('form.token'); ?> <input type="hidden" name="option" value="com_rsform" /> <input type="hidden" name="controller" value="conditions" /> <input type="hidden" name="task" value="" /> <input type="hidden" name="formId" value="<?php echo $this->formId; ?>" /> <input type="hidden" name="form_id" value="<?php echo $this->formId; ?>" /> <input type="hidden" name="cid" value="<?php echo (int) $this->condition->id; ?>" /> <input type="hidden" name="id" value="<?php echo (int) $this->condition->id; ?>" /> <input type="hidden" name="lang_code" value="<?php echo $this->escape($this->lang); ?>" /> </form> <script type="text/javascript"> var detail_component_ids = document.getElementsByName('detail_component_id[]'); for (var i=0; i<detail_component_ids.length; i++) detail_component_ids[i].onchange = rsform_change_field; </script>
| ver. 1.6 |
Github
|
.
| PHP 7.4.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings