Software: Apache/2.2.22 (Debian). PHP/5.6.36 uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) Safe-mode: OFF (not secure) /home/h33678/data/www/zt-tsou.org.ua/modules-alien/ajaxfilemanager/client/js/ajaxplorer/ drwxr-xr-x |
Viewing file: Select action/file-type: /** * @package info.ajaxplorer.plugins * * Copyright 2007-2009 Charles du Jeu * This file is part of AjaXplorer. * The latest code can be found at http://www.ajaxplorer.info/ * * This program is published under the LGPL Gnu Lesser General Public License. * You should have received a copy of the license along with AjaXplorer. * * The main conditions are as follow : * You must conspicuously and appropriately publish on each copy distributed * an appropriate copyright notice and disclaimer of warranty and keep intact * all the notices that refer to this License and to the absence of any warranty; * and give any other recipients of the Program a copy of the GNU Lesser General * Public License along with the Program. * * If you modify your copy or copies of the library or any portion of it, you may * distribute the resulting library provided you do so under the GNU Lesser * General Public License. However, programs that link to the library may be * licensed under terms of your choice, so long as the library itself can be changed. * Any translation of the GNU Lesser General Public License must be accompanied by the * GNU Lesser General Public License. * * If you copy or distribute the program, you must accompany it with the complete * corresponding machine-readable source code or with a written offer, valid for at * least three years, to furnish the complete corresponding machine-readable source code. * * Any of the above conditions can be waived if you get permission from the copyright holder. * AjaXplorer is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * Description : A simple form generator (for the MySql plugin) */ FormManager = Class.create({ initialize: function(){ }, replicateRow : function(templateRow, number, form){ for(var index=0;index < number-1 ;index++){ tr = $(templateRow.cloneNode(true)); if(tr.id) tr.id = tr.id+'_'+(index+1); var inputs = tr.select('input', 'select', 'textarea'); inputs.each(function(input){ var newName = input.getAttribute('name')+'_'+(index+1); input.setAttribute('name', newName); if(form && Prototype.Browser.IE){form[newName] = input;} }); templateRow.up().insert({bottom:tr}); } templateRow.select('input', 'select', 'textarea').each(function(origInput){ var newName = origInput.getAttribute('name')+'_0'; origInput.setAttribute('name', newName); if(form && Prototype.Browser.IE){form[newName] = origInput;} }); }, fetchValueToForm : function(form, fields, value, suffix){ $A(fields).each(function(fieldName){ if(!value[fieldName]) return; if(suffix != null){ realFieldName = fieldName+'_'+suffix; }else{ realFieldName = fieldName; } var element = form[realFieldName]; if(!element)return; var nodeName = element.nodeName.toLowerCase(); switch(nodeName){ case 'input': if(element.getAttribute('type') == "checkbox"){ if(element.value == value[fieldName]) element.checked = true; }else{ element.value = value[fieldName]; } break; case 'select': element.select('option').each(function(option){ if(option.value == value[fieldName]){ option.selected = true; } }); break; case 'textarea': element.update(value[fieldName]); element.value = value[fieldName]; break; default: break; } }); }, fetchMultipleValueToForm : function(form, fields, values){ var index = 0; $A(values).each(function(value){ this.fetchValueToForm(form, fields, value, index); index++; }.bind(this)); } }); |
:: Command execute :: | |
--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.0271 ]-- |