Revize 815
Přidáno uživatelem Ondřej Fibich před téměř 14 roky(ů)
freenetis/branches/testing/media/js/jquery.form.min.js | ||
---|---|---|
/*!
|
||
* jQuery Form Plugin
|
||
* version: 2.52 (07-DEC-2010)
|
||
* @requires jQuery v1.3.2 or later
|
||
*
|
||
* Examples and documentation at: http://malsup.com/jquery/form/
|
||
* Dual licensed under the MIT and GPL licenses:
|
||
* http://www.opensource.org/licenses/mit-license.php
|
||
* http://www.gnu.org/licenses/gpl.html
|
||
*/
|
||
;(function($) {
|
||
|
||
/*
|
||
Usage Note:
|
||
-----------
|
||
Do not use both ajaxSubmit and ajaxForm on the same form. These
|
||
functions are intended to be exclusive. Use ajaxSubmit if you want
|
||
to bind your own submit handler to the form. For example,
|
||
|
||
$(document).ready(function() {
|
||
$('#myForm').bind('submit', function(e) {
|
||
e.preventDefault(); // <-- important
|
||
$(this).ajaxSubmit({
|
||
target: '#output'
|
||
});
|
||
});
|
||
});
|
||
|
||
Use ajaxForm when you want the plugin to manage all the event binding
|
||
for you. For example,
|
||
|
||
$(document).ready(function() {
|
||
$('#myForm').ajaxForm({
|
||
target: '#output'
|
||
});
|
||
});
|
||
|
||
When using ajaxForm, the ajaxSubmit function will be invoked for you
|
||
at the appropriate time.
|
||
*/
|
||
|
||
/**
|
||
* ajaxSubmit() provides a mechanism for immediately submitting
|
||
* an HTML form using AJAX.
|
||
*/
|
||
$.fn.ajaxSubmit = function(options) {
|
||
// fast fail if nothing selected (http://dev.jquery.com/ticket/2752)
|
||
if (!this.length) {
|
||
log('ajaxSubmit: skipping submit process - no element selected');
|
||
return this;
|
||
}
|
||
|
||
if (typeof options == 'function') {
|
||
options = { success: options };
|
||
}
|
||
|
||
var action = this.attr('action');
|
||
var url = (typeof action === 'string') ? $.trim(action) : '';
|
||
if (url) {
|
||
// clean url (don't include hash vaue)
|
||
url = (url.match(/^([^#]+)/)||[])[1];
|
||
}
|
||
url = url || window.location.href || '';
|
||
|
||
options = $.extend(true, {
|
||
url: url,
|
||
type: this.attr('method') || 'GET',
|
||
iframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank'
|
||
}, options);
|
||
|
||
// hook for manipulating the form data before it is extracted;
|
||
// convenient for use with rich editors like tinyMCE or FCKEditor
|
||
var veto = {};
|
||
this.trigger('form-pre-serialize', [this, options, veto]);
|
||
if (veto.veto) {
|
||
log('ajaxSubmit: submit vetoed via form-pre-serialize trigger');
|
||
return this;
|
||
}
|
||
|
||
// provide opportunity to alter form data before it is serialized
|
||
if (options.beforeSerialize && options.beforeSerialize(this, options) === false) {
|
||
log('ajaxSubmit: submit aborted via beforeSerialize callback');
|
||
return this;
|
||
}
|
||
|
||
var n,v,a = this.formToArray(options.semantic);
|
||
if (options.data) {
|
||
options.extraData = options.data;
|
||
for (n in options.data) {
|
||
if(options.data[n] instanceof Array) {
|
||
for (var k in options.data[n]) {
|
||
a.push( { name: n, value: options.data[n][k] } );
|
||
}
|
||
}
|
||
else {
|
||
v = options.data[n];
|
||
v = $.isFunction(v) ? v() : v; // if value is fn, invoke it
|
||
a.push( { name: n, value: v } );
|
||
}
|
||
}
|
||
}
|
||
|
||
// give pre-submit callback an opportunity to abort the submit
|
||
if (options.beforeSubmit && options.beforeSubmit(a, this, options) === false) {
|
||
log('ajaxSubmit: submit aborted via beforeSubmit callback');
|
||
return this;
|
||
}
|
||
|
||
// fire vetoable 'validate' event
|
||
this.trigger('form-submit-validate', [a, this, options, veto]);
|
||
if (veto.veto) {
|
||
log('ajaxSubmit: submit vetoed via form-submit-validate trigger');
|
||
return this;
|
||
}
|
||
|
||
var q = $.param(a);
|
||
|
||
if (options.type.toUpperCase() == 'GET') {
|
||
options.url += (options.url.indexOf('?') >= 0 ? '&' : '?') + q;
|
||
options.data = null; // data is null for 'get'
|
||
}
|
||
else {
|
||
options.data = q; // data is the query string for 'post'
|
||
}
|
||
|
||
var $form = this, callbacks = [];
|
||
if (options.resetForm) {
|
||
callbacks.push(function() { $form.resetForm(); });
|
||
}
|
||
if (options.clearForm) {
|
||
callbacks.push(function() { $form.clearForm(); });
|
||
}
|
||
|
||
// perform a load on the target only if dataType is not provided
|
||
if (!options.dataType && options.target) {
|
||
var oldSuccess = options.success || function(){};
|
||
callbacks.push(function(data) {
|
||
var fn = options.replaceTarget ? 'replaceWith' : 'html';
|
||
$(options.target)[fn](data).each(oldSuccess, arguments);
|
||
});
|
||
}
|
||
else if (options.success) {
|
||
callbacks.push(options.success);
|
||
}
|
||
|
||
options.success = function(data, status, xhr) { // jQuery 1.4+ passes xhr as 3rd arg
|
||
var context = options.context || options; // jQuery 1.4+ supports scope context
|
||
for (var i=0, max=callbacks.length; i < max; i++) {
|
||
callbacks[i].apply(context, [data, status, xhr || $form, $form]);
|
||
}
|
||
};
|
||
|
||
// are there files to upload?
|
||
var fileInputs = $('input:file', this).length > 0;
|
||
var mp = 'multipart/form-data';
|
||
var multipart = ($form.attr('enctype') == mp || $form.attr('encoding') == mp);
|
||
|
||
// options.iframe allows user to force iframe mode
|
||
// 06-NOV-09: now defaulting to iframe mode if file input is detected
|
||
if (options.iframe !== false && (fileInputs || options.iframe || multipart)) {
|
||
// hack to fix Safari hang (thanks to Tim Molendijk for this)
|
||
// see: http://groups.google.com/group/jquery-dev/browse_thread/thread/36395b7ab510dd5d
|
||
if (options.closeKeepAlive) {
|
||
$.get(options.closeKeepAlive, fileUpload);
|
||
}
|
||
else {
|
||
fileUpload();
|
||
}
|
||
}
|
||
else {
|
||
$.ajax(options);
|
||
}
|
||
|
||
// fire 'notify' event
|
||
this.trigger('form-submit-notify', [this, options]);
|
||
return this;
|
||
|
||
|
||
// private function for handling file uploads (hat tip to YAHOO!)
|
||
function fileUpload() {
|
||
var form = $form[0];
|
||
|
||
if ($(':input[name=submit],:input[id=submit]', form).length) {
|
||
// if there is an input with a name or id of 'submit' then we won't be
|
||
// able to invoke the submit fn on the form (at least not x-browser)
|
||
alert('Error: Form elements must not have name or id of "submit".');
|
||
return;
|
||
}
|
||
|
||
var s = $.extend(true, {}, $.ajaxSettings, options);
|
||
s.context = s.context || s;
|
||
var id = 'jqFormIO' + (new Date().getTime()), fn = '_'+id;
|
||
window[fn] = function() {
|
||
var f = $io.data('form-plugin-onload');
|
||
if (f) {
|
||
f();
|
||
window[fn] = undefined;
|
||
try { delete window[fn]; } catch(e){}
|
||
}
|
||
}
|
||
var $io = $('<iframe id="' + id + '" name="' + id + '" src="'+ s.iframeSrc +'" onload="window[\'_\'+this.id]()" />');
|
||
var io = $io[0];
|
||
|
||
$io.css({ position: 'absolute', top: '-1000px', left: '-1000px' });
|
||
|
||
var xhr = { // mock object
|
||
aborted: 0,
|
||
responseText: null,
|
||
responseXML: null,
|
||
status: 0,
|
||
statusText: 'n/a',
|
||
getAllResponseHeaders: function() {},
|
||
getResponseHeader: function() {},
|
||
setRequestHeader: function() {},
|
||
abort: function() {
|
||
this.aborted = 1;
|
||
$io.attr('src', s.iframeSrc); // abort op in progress
|
||
}
|
||
};
|
||
|
||
var g = s.global;
|
||
// trigger ajax global events so that activity/block indicators work like normal
|
||
if (g && ! $.active++) {
|
||
$.event.trigger("ajaxStart");
|
||
}
|
||
if (g) {
|
||
$.event.trigger("ajaxSend", [xhr, s]);
|
||
}
|
||
|
||
if (s.beforeSend && s.beforeSend.call(s.context, xhr, s) === false) {
|
||
if (s.global) {
|
||
$.active--;
|
||
}
|
||
return;
|
||
}
|
||
if (xhr.aborted) {
|
||
return;
|
||
}
|
||
|
||
var cbInvoked = false;
|
||
var timedOut = 0;
|
||
|
||
// add submitting element to data if we know it
|
||
var sub = form.clk;
|
||
if (sub) {
|
||
var n = sub.name;
|
||
if (n && !sub.disabled) {
|
||
s.extraData = s.extraData || {};
|
||
s.extraData[n] = sub.value;
|
||
if (sub.type == "image") {
|
||
s.extraData[n+'.x'] = form.clk_x;
|
||
s.extraData[n+'.y'] = form.clk_y;
|
||
}
|
||
}
|
||
}
|
||
|
||
// take a breath so that pending repaints get some cpu time before the upload starts
|
||
function doSubmit() {
|
||
// make sure form attrs are set
|
||
var t = $form.attr('target'), a = $form.attr('action');
|
||
|
||
// update form attrs in IE friendly way
|
||
form.setAttribute('target',id);
|
||
if (form.getAttribute('method') != 'POST') {
|
||
form.setAttribute('method', 'POST');
|
||
}
|
||
if (form.getAttribute('action') != s.url) {
|
||
form.setAttribute('action', s.url);
|
||
}
|
||
|
||
// ie borks in some cases when setting encoding
|
||
if (! s.skipEncodingOverride) {
|
||
$form.attr({
|
||
encoding: 'multipart/form-data',
|
||
enctype: 'multipart/form-data'
|
||
});
|
||
}
|
||
|
||
// support timout
|
||
if (s.timeout) {
|
||
setTimeout(function() { timedOut = true; cb(); }, s.timeout);
|
||
}
|
||
|
||
// add "extra" data to form if provided in options
|
||
var extraInputs = [];
|
||
try {
|
||
if (s.extraData) {
|
||
for (var n in s.extraData) {
|
||
extraInputs.push(
|
||
$('<input type="hidden" name="'+n+'" value="'+s.extraData[n]+'" />')
|
||
.appendTo(form)[0]);
|
||
}
|
||
}
|
||
|
||
// add iframe to doc and submit the form
|
||
$io.appendTo('body');
|
||
$io.data('form-plugin-onload', cb);
|
||
form.submit();
|
||
}
|
||
finally {
|
||
// reset attrs and remove "extra" input elements
|
||
form.setAttribute('action',a);
|
||
if(t) {
|
||
form.setAttribute('target', t);
|
||
} else {
|
||
$form.removeAttr('target');
|
||
}
|
||
$(extraInputs).remove();
|
||
}
|
||
}
|
||
|
||
if (s.forceSync) {
|
||
doSubmit();
|
||
}
|
||
else {
|
||
setTimeout(doSubmit, 10); // this lets dom updates render
|
||
}
|
||
|
||
var data, doc, domCheckCount = 50;
|
||
|
||
function cb() {
|
||
if (cbInvoked) {
|
||
return;
|
||
}
|
||
|
||
$io.removeData('form-plugin-onload');
|
||
|
||
var ok = true;
|
||
try {
|
||
if (timedOut) {
|
||
throw 'timeout';
|
||
}
|
||
// extract the server response from the iframe
|
||
doc = io.contentWindow ? io.contentWindow.document : io.contentDocument ? io.contentDocument : io.document;
|
||
|
||
var isXml = s.dataType == 'xml' || doc.XMLDocument || $.isXMLDoc(doc);
|
||
log('isXml='+isXml);
|
||
if (!isXml && window.opera && (doc.body == null || doc.body.innerHTML == '')) {
|
||
if (--domCheckCount) {
|
||
// in some browsers (Opera) the iframe DOM is not always traversable when
|
||
// the onload callback fires, so we loop a bit to accommodate
|
||
log('requeing onLoad callback, DOM not available');
|
||
setTimeout(cb, 250);
|
||
return;
|
||
}
|
||
// let this fall through because server response could be an empty document
|
||
//log('Could not access iframe DOM after mutiple tries.');
|
||
//throw 'DOMException: not available';
|
||
}
|
||
|
||
//log('response detected');
|
||
cbInvoked = true;
|
||
xhr.responseText = doc.documentElement ? doc.documentElement.innerHTML : null;
|
||
xhr.responseXML = doc.XMLDocument ? doc.XMLDocument : doc;
|
||
xhr.getResponseHeader = function(header){
|
||
var headers = {'content-type': s.dataType};
|
||
return headers[header];
|
||
};
|
||
|
||
var scr = /(json|script)/.test(s.dataType);
|
||
if (scr || s.textarea) {
|
||
// see if user embedded response in textarea
|
||
var ta = doc.getElementsByTagName('textarea')[0];
|
||
if (ta) {
|
||
xhr.responseText = ta.value;
|
||
}
|
||
else if (scr) {
|
||
// account for browsers injecting pre around json response
|
||
var pre = doc.getElementsByTagName('pre')[0];
|
||
var b = doc.getElementsByTagName('body')[0];
|
||
if (pre) {
|
||
xhr.responseText = pre.textContent;
|
||
}
|
||
else if (b) {
|
||
xhr.responseText = b.innerHTML;
|
||
}
|
||
}
|
||
}
|
||
else if (s.dataType == 'xml' && !xhr.responseXML && xhr.responseText != null) {
|
||
xhr.responseXML = toXml(xhr.responseText);
|
||
}
|
||
data = $.httpData(xhr, s.dataType);
|
||
}
|
||
catch(e){
|
||
log('error caught:',e);
|
||
ok = false;
|
||
xhr.error = e;
|
||
$.handleError(s, xhr, 'error', e);
|
||
}
|
||
|
||
if (xhr.aborted) {
|
||
log('upload aborted');
|
||
ok = false;
|
||
}
|
||
|
||
// ordering of these callbacks/triggers is odd, but that's how $.ajax does it
|
||
if (ok) {
|
||
s.success.call(s.context, data, 'success', xhr);
|
||
if (g) {
|
||
$.event.trigger("ajaxSuccess", [xhr, s]);
|
||
}
|
||
}
|
||
if (g) {
|
||
$.event.trigger("ajaxComplete", [xhr, s]);
|
||
}
|
||
if (g && ! --$.active) {
|
||
$.event.trigger("ajaxStop");
|
||
}
|
||
if (s.complete) {
|
||
s.complete.call(s.context, xhr, ok ? 'success' : 'error');
|
||
}
|
||
|
||
// clean up
|
||
setTimeout(function() {
|
||
$io.removeData('form-plugin-onload');
|
||
$io.remove();
|
||
xhr.responseXML = null;
|
||
}, 100);
|
||
}
|
||
|
||
function toXml(s, doc) {
|
||
if (window.ActiveXObject) {
|
||
doc = new ActiveXObject('Microsoft.XMLDOM');
|
||
doc.async = 'false';
|
||
doc.loadXML(s);
|
||
}
|
||
else {
|
||
doc = (new DOMParser()).parseFromString(s, 'text/xml');
|
||
}
|
||
return (doc && doc.documentElement && doc.documentElement.tagName != 'parsererror') ? doc : null;
|
||
}
|
||
}
|
||
};
|
||
|
||
/**
|
||
* ajaxForm() provides a mechanism for fully automating form submission.
|
||
*
|
||
* The advantages of using this method instead of ajaxSubmit() are:
|
||
*
|
||
* 1: This method will include coordinates for <input type="image" /> elements (if the element
|
||
* is used to submit the form).
|
||
* 2. This method will include the submit element's name/value data (for the element that was
|
||
* used to submit the form).
|
||
* 3. This method binds the submit() method to the form for you.
|
||
*
|
||
* The options argument for ajaxForm works exactly as it does for ajaxSubmit. ajaxForm merely
|
||
* passes the options argument along after properly binding events for submit elements and
|
||
* the form itself.
|
||
*/
|
||
$.fn.ajaxForm = function(options) {
|
||
// in jQuery 1.3+ we can fix mistakes with the ready state
|
||
if (this.length === 0) {
|
||
var o = { s: this.selector, c: this.context };
|
||
if (!$.isReady && o.s) {
|
||
log('DOM not ready, queuing ajaxForm');
|
||
$(function() {
|
||
$(o.s,o.c).ajaxForm(options);
|
||
});
|
||
return this;
|
||
}
|
||
// is your DOM ready? http://docs.jquery.com/Tutorials:Introducing_$(document).ready()
|
||
log('terminating; zero elements found by selector' + ($.isReady ? '' : ' (DOM not ready)'));
|
||
return this;
|
||
}
|
||
|
||
return this.ajaxFormUnbind().bind('submit.form-plugin', function(e) {
|
||
if (!e.isDefaultPrevented()) { // if event has been canceled, don't proceed
|
||
e.preventDefault();
|
||
$(this).ajaxSubmit(options);
|
||
}
|
||
}).bind('click.form-plugin', function(e) {
|
||
var target = e.target;
|
||
var $el = $(target);
|
||
if (!($el.is(":submit,input:image"))) {
|
||
// is this a child element of the submit el? (ex: a span within a button)
|
||
var t = $el.closest(':submit');
|
||
if (t.length == 0) {
|
||
return;
|
||
}
|
||
target = t[0];
|
||
}
|
||
var form = this;
|
||
form.clk = target;
|
||
if (target.type == 'image') {
|
||
if (e.offsetX != undefined) {
|
||
form.clk_x = e.offsetX;
|
||
form.clk_y = e.offsetY;
|
||
} else if (typeof $.fn.offset == 'function') { // try to use dimensions plugin
|
||
var offset = $el.offset();
|
||
form.clk_x = e.pageX - offset.left;
|
||
form.clk_y = e.pageY - offset.top;
|
||
} else {
|
||
form.clk_x = e.pageX - target.offsetLeft;
|
||
form.clk_y = e.pageY - target.offsetTop;
|
||
}
|
||
}
|
||
// clear form vars
|
||
setTimeout(function() { form.clk = form.clk_x = form.clk_y = null; }, 100);
|
||
});
|
||
};
|
||
|
||
// ajaxFormUnbind unbinds the event handlers that were bound by ajaxForm
|
||
$.fn.ajaxFormUnbind = function() {
|
||
return this.unbind('submit.form-plugin click.form-plugin');
|
||
};
|
||
|
||
/**
|
||
* formToArray() gathers form element data into an array of objects that can
|
||
* be passed to any of the following ajax functions: $.get, $.post, or load.
|
||
* Each object in the array has both a 'name' and 'value' property. An example of
|
||
* an array for a simple login form might be:
|
||
*
|
||
* [ { name: 'username', value: 'jresig' }, { name: 'password', value: 'secret' } ]
|
||
*
|
||
* It is this array that is passed to pre-submit callback functions provided to the
|
||
* ajaxSubmit() and ajaxForm() methods.
|
||
*/
|
||
$.fn.formToArray = function(semantic) {
|
||
var a = [];
|
||
if (this.length === 0) {
|
||
return a;
|
||
}
|
||
|
||
var form = this[0];
|
||
var els = semantic ? form.getElementsByTagName('*') : form.elements;
|
||
if (!els) {
|
||
return a;
|
||
}
|
||
|
||
var i,j,n,v,el,max,jmax;
|
||
for(i=0, max=els.length; i < max; i++) {
|
||
el = els[i];
|
||
n = el.name;
|
||
if (!n) {
|
||
continue;
|
||
}
|
||
|
||
if (semantic && form.clk && el.type == "image") {
|
||
// handle image inputs on the fly when semantic == true
|
||
if(!el.disabled && form.clk == el) {
|
||
a.push({name: n, value: $(el).val()});
|
||
a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
|
||
}
|
||
continue;
|
||
}
|
||
|
||
v = $.fieldValue(el, true);
|
||
if (v && v.constructor == Array) {
|
||
for(j=0, jmax=v.length; j < jmax; j++) {
|
||
a.push({name: n, value: v[j]});
|
||
}
|
||
}
|
||
else if (v !== null && typeof v != 'undefined') {
|
||
a.push({name: n, value: v});
|
||
}
|
||
}
|
||
|
||
if (!semantic && form.clk) {
|
||
// input type=='image' are not found in elements array! handle it here
|
||
var $input = $(form.clk), input = $input[0];
|
||
n = input.name;
|
||
if (n && !input.disabled && input.type == 'image') {
|
||
a.push({name: n, value: $input.val()});
|
||
a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
|
||
}
|
||
}
|
||
return a;
|
||
};
|
||
|
||
/**
|
||
* Serializes form data into a 'submittable' string. This method will return a string
|
||
* in the format: name1=value1&name2=value2
|
||
*/
|
||
$.fn.formSerialize = function(semantic) {
|
||
//hand off to jQuery.param for proper encoding
|
||
return $.param(this.formToArray(semantic));
|
||
};
|
||
|
||
/**
|
||
* Serializes all field elements in the jQuery object into a query string.
|
||
* This method will return a string in the format: name1=value1&name2=value2
|
||
*/
|
||
$.fn.fieldSerialize = function(successful) {
|
||
var a = [];
|
||
this.each(function() {
|
||
var n = this.name;
|
||
if (!n) {
|
||
return;
|
||
}
|
||
var v = $.fieldValue(this, successful);
|
||
if (v && v.constructor == Array) {
|
||
for (var i=0,max=v.length; i < max; i++) {
|
||
a.push({name: n, value: v[i]});
|
||
}
|
||
}
|
||
else if (v !== null && typeof v != 'undefined') {
|
||
a.push({name: this.name, value: v});
|
||
}
|
||
});
|
||
//hand off to jQuery.param for proper encoding
|
||
return $.param(a);
|
||
};
|
||
|
||
/**
|
||
* Returns the value(s) of the element in the matched set. For example, consider the following form:
|
||
*
|
||
* <form><fieldset>
|
||
* <input name="A" type="text" />
|
||
* <input name="A" type="text" />
|
||
* <input name="B" type="checkbox" value="B1" />
|
||
* <input name="B" type="checkbox" value="B2"/>
|
||
* <input name="C" type="radio" value="C1" />
|
||
* <input name="C" type="radio" value="C2" />
|
||
* </fieldset></form>
|
||
*
|
||
* var v = $(':text').fieldValue();
|
||
* // if no values are entered into the text inputs
|
||
* v == ['','']
|
||
* // if values entered into the text inputs are 'foo' and 'bar'
|
||
* v == ['foo','bar']
|
||
*
|
||
* var v = $(':checkbox').fieldValue();
|
||
* // if neither checkbox is checked
|
||
* v === undefined
|
||
* // if both checkboxes are checked
|
||
* v == ['B1', 'B2']
|
||
*
|
||
* var v = $(':radio').fieldValue();
|
||
* // if neither radio is checked
|
||
* v === undefined
|
||
* // if first radio is checked
|
||
* v == ['C1']
|
||
*
|
||
* The successful argument controls whether or not the field element must be 'successful'
|
||
* (per http://www.w3.org/TR/html4/interact/forms.html#successful-controls).
|
||
* The default value of the successful argument is true. If this value is false the value(s)
|
||
* for each element is returned.
|
||
*
|
||
* Note: This method *always* returns an array. If no valid value can be determined the
|
||
* array will be empty, otherwise it will contain one or more values.
|
||
*/
|
||
$.fn.fieldValue = function(successful) {
|
||
for (var val=[], i=0, max=this.length; i < max; i++) {
|
||
var el = this[i];
|
||
var v = $.fieldValue(el, successful);
|
||
if (v === null || typeof v == 'undefined' || (v.constructor == Array && !v.length)) {
|
||
continue;
|
||
}
|
||
v.constructor == Array ? $.merge(val, v) : val.push(v);
|
||
}
|
||
return val;
|
||
};
|
||
|
||
/**
|
||
* Returns the value of the field element.
|
||
*/
|
||
$.fieldValue = function(el, successful) {
|
||
var n = el.name, t = el.type, tag = el.tagName.toLowerCase();
|
||
if (successful === undefined) {
|
||
successful = true;
|
||
}
|
||
|
||
if (successful && (!n || el.disabled || t == 'reset' || t == 'button' ||
|
||
(t == 'checkbox' || t == 'radio') && !el.checked ||
|
||
(t == 'submit' || t == 'image') && el.form && el.form.clk != el ||
|
||
tag == 'select' && el.selectedIndex == -1)) {
|
||
return null;
|
||
}
|
||
|
||
if (tag == 'select') {
|
||
var index = el.selectedIndex;
|
||
if (index < 0) {
|
||
return null;
|
||
}
|
||
var a = [], ops = el.options;
|
||
var one = (t == 'select-one');
|
||
var max = (one ? index+1 : ops.length);
|
||
for(var i=(one ? index : 0); i < max; i++) {
|
||
var op = ops[i];
|
||
if (op.selected) {
|
||
var v = op.value;
|
||
if (!v) { // extra pain for IE...
|
||
v = (op.attributes && op.attributes['value'] && !(op.attributes['value'].specified)) ? op.text : op.value;
|
||
}
|
||
if (one) {
|
||
return v;
|
||
}
|
||
a.push(v);
|
||
}
|
||
}
|
||
return a;
|
||
}
|
||
return $(el).val();
|
||
};
|
||
|
||
/**
|
||
* Clears the form data. Takes the following actions on the form's input fields:
|
||
* - input text fields will have their 'value' property set to the empty string
|
||
* - select elements will have their 'selectedIndex' property set to -1
|
||
* - checkbox and radio inputs will have their 'checked' property set to false
|
||
* - inputs of type submit, button, reset, and hidden will *not* be effected
|
||
* - button elements will *not* be effected
|
||
*/
|
||
$.fn.clearForm = function() {
|
||
return this.each(function() {
|
||
$('input,select,textarea', this).clearFields();
|
||
});
|
||
};
|
||
|
||
/**
|
||
* Clears the selected form elements.
|
||
*/
|
||
$.fn.clearFields = $.fn.clearInputs = function() {
|
||
return this.each(function() {
|
||
var t = this.type, tag = this.tagName.toLowerCase();
|
||
if (t == 'text' || t == 'password' || tag == 'textarea') {
|
||
this.value = '';
|
||
}
|
||
else if (t == 'checkbox' || t == 'radio') {
|
||
this.checked = false;
|
||
}
|
||
else if (tag == 'select') {
|
||
this.selectedIndex = -1;
|
||
}
|
||
});
|
||
};
|
||
|
||
/**
|
||
* Resets the form data. Causes all form elements to be reset to their original value.
|
||
*/
|
||
$.fn.resetForm = function() {
|
||
return this.each(function() {
|
||
// guard against an input with the name of 'reset'
|
||
// note that IE reports the reset function as an 'object'
|
||
if (typeof this.reset == 'function' || (typeof this.reset == 'object' && !this.reset.nodeType)) {
|
||
this.reset();
|
||
}
|
||
});
|
||
};
|
||
|
||
/**
|
||
* Enables or disables any matching elements.
|
||
*/
|
||
$.fn.enable = function(b) {
|
||
if (b === undefined) {
|
||
b = true;
|
||
}
|
||
return this.each(function() {
|
||
this.disabled = !b;
|
||
});
|
||
};
|
||
|
||
/**
|
||
* Checks/unchecks any matching checkboxes or radio buttons and
|
||
* selects/deselects and matching option elements.
|
||
*/
|
||
$.fn.selected = function(select) {
|
||
if (select === undefined) {
|
||
select = true;
|
||
}
|
||
return this.each(function() {
|
||
var t = this.type;
|
||
if (t == 'checkbox' || t == 'radio') {
|
||
this.checked = select;
|
||
}
|
||
else if (this.tagName.toLowerCase() == 'option') {
|
||
var $sel = $(this).parent('select');
|
||
if (select && $sel[0] && $sel[0].type == 'select-one') {
|
||
// deselect all other options
|
||
$sel.find('option').selected(false);
|
||
}
|
||
this.selected = select;
|
||
}
|
||
});
|
||
};
|
||
|
||
// helper fn for console logging
|
||
// set $.fn.ajaxSubmit.debug to true to enable debug logging
|
||
function log() {
|
||
if ($.fn.ajaxSubmit.debug) {
|
||
var msg = '[jquery.form] ' + Array.prototype.join.call(arguments,'');
|
||
if (window.console && window.console.log) {
|
||
window.console.log(msg);
|
||
}
|
||
else if (window.opera && window.opera.postError) {
|
||
window.opera.postError(msg);
|
||
}
|
||
}
|
||
};
|
||
|
||
})(jQuery);
|
freenetis/branches/testing/application/i18n/cs_CZ/texts.php | ||
---|---|---|
'add vote' => 'Přidat hlas',
|
||
'add vote about work' => 'Přidat hlas o práci',
|
||
'add wireless setting' => 'Přidat bezdrátové nastavení',
|
||
'added' => 'Přidáno',
|
||
'added by' => 'Přidal',
|
||
'another contact information' => 'Další kontaktní informace',
|
||
'additional information' => 'Doplňkové informace',
|
||
... | ... | |
'confirmed works' => 'Potvrzené práce',
|
||
'connections' => 'Připojení',
|
||
'constant symbol' => 'Konstantní symbol',
|
||
'contact is owned by another user' => 'Kontakt je vlastněn jiným uživatelem',
|
||
'contact is already in database' => 'Kontakt je již v databázi',
|
||
'contact data' => 'Kontaktní údaje',
|
||
'contact information' => 'Kontaktní informace',
|
||
... | ... | |
'dns configuration' => 'Konfigurace DNS',
|
||
'dns configuration files were successfully generated' => 'Konfigurační soubory pro DNS byly úspěšně vygenerovány',
|
||
'do transfer' => 'Proveď transakci',
|
||
'do you really want to delete this record' => 'Chcete opravdu smazat telefonní fakturu',
|
||
'do you really want to delete this record' => 'Chcete opravdu smazat tento záznam',
|
||
'do you want to delete this users phone invoice' => 'Chcete opravdu smazat uživatelovu telefonní fakturu',
|
||
'do you want to cancel this redirection' => 'Chcete zrušit toto přesměrování',
|
||
'do you want to cancel this backup' => 'Chcete zrušit toto zálohování',
|
||
... | ... | |
'enum type has been successfully updated' => 'Výčet byl úspěšně aktualizován',
|
||
'enumerations' => 'Výčty',
|
||
'error' => 'Chyba',
|
||
'error - wrong arguments' => 'Chyba - špatné argumenty',
|
||
'error - wrong data' => 'Chyba - špatná data',
|
||
'error - amount has to be positive' => 'Chyba - částka musí být kladná.',
|
||
'error - cannot add message' => 'Chyba - nelze přidat zprávu.',
|
||
'error - cannot delete bank statement' => 'Chyba - nelze smazat bankovní výpis.',
|
||
'error - cannot load intelligent selection' => 'Chyba - nelze načíst inteligentní výběr',
|
||
'error - cannot update message' => 'Chyba - nelze upravit zprávu.',
|
||
'error - cannot save data' => 'Chyba - nelze uložit data.',
|
||
'error - cant add contacts' => 'Chyba - nelze přidat kontakt.',
|
||
'error - cant add country to contact' => 'Chyba - nelze přidat relaci mezi zemí a kontaktem.',
|
||
'error - cant add new account' => 'Chyba - nelze vytvořit účet.',
|
||
... | ... | |
'invoice number' => 'Číslo faktury',
|
||
'invoices' => 'Faktury',
|
||
'invoices nr' => 'Počet faktur',
|
||
'insert data from webpage' => 'Vložte data z internetové stránky',
|
||
'in your e-mail was sent a confirmation message' => 'Na váš e-mail byla odeslána potvrzovací zpráva',
|
||
'ip address' => 'IP adresa',
|
||
'ip address already exists' => 'IP adresa už existuje.',
|
freenetis/branches/testing/application/models/phone_sms_message.php | ||
---|---|---|
SELECT IF(SUM(private) >= COUNT(private)/2, '1', '0') as private FROM phone_sms_messages
|
||
WHERE phone_invoice_user_id IN (
|
||
SELECT id FROM phone_invoice_users
|
||
WHERE user_id = ? AND id <> ?
|
||
WHERE user_id = ? AND id < ?
|
||
) AND number LIKE p.number
|
||
) as private FROM phone_sms_messages p WHERE phone_invoice_user_id = ?",
|
||
array($user_id, $phone_invoice_user_id, $phone_invoice_user_id)
|
freenetis/branches/testing/application/models/phone_fixed_call.php | ||
---|---|---|
SELECT IF(SUM(private) >= COUNT(private)/2, '1', '0') as private FROM phone_fixed_calls
|
||
WHERE phone_invoice_user_id IN (
|
||
SELECT id FROM phone_invoice_users
|
||
WHERE user_id = ? AND id <> ?
|
||
WHERE user_id = ? AND id < ?
|
||
) AND number LIKE p.number
|
||
) as private FROM phone_fixed_calls p WHERE phone_invoice_user_id = ?",
|
||
array($user_id, $phone_invoice_user_id, $phone_invoice_user_id)
|
freenetis/branches/testing/application/models/phone_roaming_sms_message.php | ||
---|---|---|
SELECT IF(SUM(private) >= COUNT(private)/2, '1', '0') as private FROM phone_roaming_sms_messages
|
||
WHERE phone_invoice_user_id IN (
|
||
SELECT id FROM phone_invoice_users
|
||
WHERE user_id = ? AND id <> ?
|
||
WHERE user_id = ? AND id < ?
|
||
) AND number LIKE p.number
|
||
) as private FROM phone_roaming_sms_messages p WHERE phone_invoice_user_id = ?",
|
||
array($user_id, $phone_invoice_user_id, $phone_invoice_user_id)
|
freenetis/branches/testing/application/models/contact.php | ||
---|---|---|
}
|
||
|
||
/**
|
||
* Check if user own this contact
|
||
* @param integer $user_id
|
||
* @return boolean
|
||
*/
|
||
public function is_users_contact($user_id)
|
||
{
|
||
if (!$this->id)
|
||
{
|
||
return false;
|
||
}
|
||
return $this->db->query("
|
||
SELECT COUNT(contact_id) AS count FROM users_contacts WHERE contact_id = ? AND user_id = ?
|
||
", array($this->id, $user_id))->current()->count;
|
||
}
|
||
|
||
/**
|
||
* Search for relation between users and countacts (users_contacts)
|
||
* @return integer Number of relation
|
||
*/
|
freenetis/branches/testing/application/models/phone_call.php | ||
---|---|---|
SELECT IF(SUM(private) >= COUNT(private)/2, '1', '0') as private FROM phone_calls
|
||
WHERE phone_invoice_user_id IN (
|
||
SELECT id FROM phone_invoice_users
|
||
WHERE user_id = ? AND id <> ?
|
||
WHERE user_id = ? AND id < ?
|
||
) AND number LIKE p.number
|
||
) as private FROM phone_calls p WHERE phone_invoice_user_id = ?",
|
||
array($user_id, $phone_invoice_user_id, $phone_invoice_user_id)
|
freenetis/branches/testing/application/controllers/private_phone_contacts.php | ||
---|---|---|
Controller::warning(PARAMETER);
|
||
}
|
||
|
||
/**
|
||
* Import conatcts from Fundamol server
|
||
* @param integer $user_id
|
||
*/
|
||
public function import($user_id)
|
||
{
|
||
if (!is_numeric($user_id))
|
||
... | ... | |
}
|
||
|
||
/**
|
||
* Save funanbol import via AJAX
|
||
* Response is JSON
|
||
* @param integer $user_id
|
||
*/
|
||
public function import_save_ajax($user_id)
|
||
{
|
||
$error = array(
|
||
'error_data' => array ('error' => url_lang::lang('texts.Error - Wrong data')),
|
||
'error_args' => array ('error' => url_lang::lang('texts.Error - Wrong arguments')),
|
||
'error_save' => array ('error' => url_lang::lang('texts.Error - Cannot save data')),
|
||
);
|
||
|
||
$status_private_saved = 0;
|
||
$status_private_already_in = 1;
|
||
$status_global_saved = 2;
|
||
$status_global_already_in = 3;
|
||
$status_global_own_by_another = 5;
|
||
|
||
if (!is_numeric($user_id))
|
||
{
|
||
echo json_encode($error['error_args']);
|
||
return;
|
||
}
|
||
|
||
$user = new User_Model($user_id);
|
||
|
||
if (!$user->id)
|
||
{
|
||
echo json_encode($error['error_args']);
|
||
return;
|
||
}
|
||
|
||
if (! $this->acl_check_new('Private_phone_contacts_Controller', 'contacts', $user->member_id))
|
||
{
|
||
echo json_encode($error['error_args']);
|
||
return;
|
||
}
|
||
|
||
$can_add = $this->acl_check_new('Users_Controller', 'additional_contacts');
|
||
|
||
try
|
||
{
|
||
if ($_POST && count($_POST))
|
||
{
|
||
$im_names = @$_POST['im_name'];
|
||
$im_namefs = @$_POST['im_namef'];
|
||
$im_namels = @$_POST['im_namel'];
|
||
$im_phones = @$_POST['im_phone'];
|
||
$im_privates = @$_POST['im_private'];
|
||
$im_constacts = @$_POST['im_contact'];
|
||
|
||
if (!is_array($im_names) || !is_array($im_namels) ||
|
||
!is_array($im_namefs) || !is_array($im_phones))
|
||
{
|
||
echo json_encode($error['error_args']);
|
||
return;
|
||
}
|
||
|
||
$output = array();
|
||
$private_user_contact = new Private_users_contact_Model();
|
||
// start trasaction
|
||
$user->transaction_start();
|
||
// we have got right data
|
||
foreach ($im_names as $index => $im_name)
|
||
{
|
||
// data
|
||
$number = $im_phones[$index];
|
||
$name = $im_namefs[$index];
|
||
$surname = $im_namels[$index];
|
||
// models
|
||
$contact = new Contact_Model();
|
||
$country = NULL;
|
||
// gets number without country prefix
|
||
$country_id = $contact->find_phone_country($number);
|
||
$number_short = $number;
|
||
if ($country_id > 0)
|
||
{
|
||
$country = new Country_Model($country_id);
|
||
$number_short = substr($number, strlen($country->country_code));
|
||
}
|
||
// switch to right action
|
||
if (isset($im_privates[$index]))
|
||
{ // private contact
|
||
// is contact already in database?
|
||
$contact_id = $contact->find_contact_id(Contact_Model::TYPE_PHONE, $number_short);
|
||
if ($contact_id == 0)
|
||
{
|
||
$contact->type = Contact_Model::TYPE_PHONE;
|
||
$contact->value = $number_short;
|
||
if (!$contact->save())
|
||
{
|
||
throw new Exception();
|
||
}
|
||
// add country of phone number
|
||
if ($country != NULL)
|
||
{
|
||
$contact->add($country);
|
||
if (!$contact->save())
|
||
{
|
||
throw new Exception();
|
||
}
|
||
}
|
||
$contact_id = $contact->id;
|
||
}
|
||
|
||
$private_user_contact_id = $private_user_contact->get_contact_id($user_id, $number);
|
||
if ($private_user_contact_id > 0)
|
||
{
|
||
// output
|
||
$output[] = array (
|
||
'id' => $index,
|
||
'status' => $status_private_already_in
|
||
);
|
||
}
|
||
else
|
||
{
|
||
// add relation M:N between users and contacts
|
||
$private_user_contact->contact_id = $contact_id;
|
||
$private_user_contact->user_id = $user_id;
|
||
$private_user_contact->description = $im_name;
|
||
if (!$private_user_contact->save())
|
||
{
|
||
throw new Exception();
|
||
}
|
||
$private_user_contact->clear();
|
||
// output
|
||
$output[] = array (
|
||
'id' => $index,
|
||
'status' => $status_private_saved
|
||
);
|
||
}
|
||
}
|
||
else if ($can_add && isset($im_constacts[$index]))
|
||
{ // global contact of some user
|
||
$im_constact = intval($im_constacts[$index]);
|
||
$user_model = new User_Model($im_constact);
|
||
|
||
if ($user_model && $user_model->id)
|
||
{
|
||
// search for contacts
|
||
$contact_id = $contact->find_contact_id(Contact_Model::TYPE_PHONE, $number_short);
|
||
|
||
if ($contact_id)
|
||
{
|
||
$contact = ORM::factory('contact', $contact_id);
|
||
$realations = $contact->count_all_users_contacts_relation();
|
||
if ($realations == 0)
|
||
{ // add relation
|
||
if (!$contact->add($user_model) || !$contact->save())
|
||
{
|
||
throw new Exception('6');
|
||
}
|
||
// output
|
||
$output[] = array (
|
||
'id' => $index,
|
||
'status' => $status_global_saved
|
||
);
|
||
}
|
||
else if ($contact->is_users_contact($user_model->id))
|
||
{ // already in
|
||
$output[] = array (
|
||
'id' => $index,
|
||
'status' => $status_global_already_in
|
||
);
|
||
}
|
||
else
|
||
{ // another user owns this contact
|
||
$output[] = array (
|
||
'id' => $index,
|
||
'status' => $status_global_own_by_another
|
||
);
|
||
}
|
||
}
|
||
else
|
||
{ // add whole contact
|
||
$contact->type = Contact_Model::TYPE_PHONE;
|
||
$contact->value = $number_short;
|
||
if (!$contact->save())
|
||
{
|
||
throw new Exception('1');
|
||
}
|
||
|
||
if (!$contact->add($user_model) || !$contact->save())
|
||
{
|
||
throw new Exception('2');
|
||
}
|
||
|
||
if ($country != NULL && (!$contact->add($country) || !$contact->save()))
|
||
{
|
||
throw new Exception('3');
|
||
}
|
||
}
|
||
}
|
||
else
|
||
{
|
||
throw new Exception('4');
|
||
}
|
||
}
|
||
else
|
||
{ // error
|
||
throw new Exception('5 ' . (count($im_constacts)));
|
||
}
|
||
}
|
||
// commit transaction
|
||
$user->transaction_commit();
|
||
// output
|
||
echo json_encode(array ('success' => $output));
|
||
}
|
||
else
|
||
{
|
||
echo json_encode($error['error_data']);
|
||
}
|
||
}
|
||
catch (Exception $ex)
|
||
{
|
||
$user->transaction_roolback();
|
||
$error['error_save']['error'] .= $ex->getMessage();
|
||
echo json_encode($error['error_save']);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Adds private phone contact
|
||
* @param integer $user_id
|
||
* @param string $number
|
freenetis/branches/testing/application/controllers/phone_invoices.php | ||
---|---|---|
|
||
$grid->callback_field('number')->label(url_lang::lang('texts.Called number'))
|
||
->callback('Phone_invoices_Controller::phone_field');
|
||
$grid->field('length')->label(url_lang::lang('texts.Length'));
|
||
$grid->callback_field('price')->label(url_lang::lang('texts.Price'))
|
||
->callback('Phone_invoices_Controller::price_field');
|
||
$grid->callback_field('period')->label(url_lang::lang('texts.Period'))
|
||
->callback('Phone_invoices_Controller::period_field');
|
||
|
||
if ($this->acl_check_edit('Phone_invoices_Controller', 'dumps') ||
|
||
($phone_inv_model->locked == 0 &&
|
||
... | ... | |
$grid->callback_field('private')->label(url_lang::lang('texts.Private'))
|
||
->callback('Phone_invoices_Controller::private_field_locked');
|
||
}
|
||
|
||
$grid->field('length')->label(url_lang::lang('texts.Length'));
|
||
$grid->callback_field('price')->label(url_lang::lang('texts.Price'))
|
||
->callback('Phone_invoices_Controller::price_field');
|
||
$grid->callback_field('period')->label(url_lang::lang('texts.Period'))
|
||
->callback('Phone_invoices_Controller::period_field');
|
||
|
||
$grid->datasource($call->get_calls_from($phone_inv_user_model->id));
|
||
|
||
... | ... | |
|
||
$grid->callback_field('number')->label(url_lang::lang('texts.Called number'))
|
||
->callback('Phone_invoices_Controller::phone_field');
|
||
$grid->field('length')->label(url_lang::lang('texts.Length'));
|
||
$grid->callback_field('price')->label(url_lang::lang('texts.Price'))
|
||
->callback('Phone_invoices_Controller::price_field');
|
||
$grid->callback_field('period')->label(url_lang::lang('texts.Period'))
|
||
->callback('Phone_invoices_Controller::period_field');
|
||
$grid->field('destiny')->label(url_lang::lang('texts.Destination'));
|
||
|
||
if ($this->acl_check_edit('Phone_invoices_Controller', 'dumps') ||
|
||
($phone_inv_model->locked == 0 &&
|
||
... | ... | |
->callback('Phone_invoices_Controller::private_field_locked');
|
||
}
|
||
|
||
$grid->field('length')->label(url_lang::lang('texts.Length'));
|
||
$grid->callback_field('price')->label(url_lang::lang('texts.Price'))
|
||
->callback('Phone_invoices_Controller::price_field');
|
||
$grid->callback_field('period')->label(url_lang::lang('texts.Period'))
|
||
->callback('Phone_invoices_Controller::period_field');
|
||
$grid->field('destiny')->label(url_lang::lang('texts.Destination'));
|
||
|
||
$grid->datasource($call->get_fixed_calls_from($phone_inv_user_model->id));
|
||
|
||
$heading = url_lang::lang('texts.Fixed calls');
|
||
... | ... | |
|
||
$grid->callback_field('number')->label(url_lang::lang('texts.Called number'))
|
||
->callback('Phone_invoices_Controller::phone_field');
|
||
$grid->field('length')->label(url_lang::lang('texts.Length'));
|
||
$grid->callback_field('price')->label(url_lang::lang('texts.Price'))
|
||
->callback('Phone_invoices_Controller::price_field');
|
||
$grid->callback_field('period')->label(url_lang::lang('texts.Period'))
|
||
->callback('Phone_invoices_Controller::period_field');
|
||
$grid->field('group')->label(url_lang::lang('texts.Group'));
|
||
|
||
if ($this->acl_check_edit('Phone_invoices_Controller', 'dumps') ||
|
||
($phone_inv_model->locked == 0 &&
|
||
... | ... | |
$grid->callback_field('private')->label(url_lang::lang('texts.Private'))
|
||
->callback('Phone_invoices_Controller::private_field_locked');
|
||
}
|
||
|
||
$grid->field('length')->label(url_lang::lang('texts.Length'));
|
||
$grid->callback_field('price')->label(url_lang::lang('texts.Price'))
|
||
->callback('Phone_invoices_Controller::price_field');
|
||
$grid->callback_field('period')->label(url_lang::lang('texts.Period'))
|
||
->callback('Phone_invoices_Controller::period_field');
|
||
$grid->field('group')->label(url_lang::lang('texts.Group'));
|
||
|
||
$grid->datasource($call->get_vpn_calls_from($phone_inv_user_model->id));
|
||
|
||
... | ... | |
|
||
$grid->callback_field('number')->label(url_lang::lang('texts.Number'))
|
||
->callback('Phone_invoices_Controller::phone_field');
|
||
$grid->callback_field('price')->label(url_lang::lang('texts.Price'))
|
||
->callback('Phone_invoices_Controller::price_field');
|
||
$grid->callback_field('period')->label(url_lang::lang('texts.Period'))
|
||
->callback('Phone_invoices_Controller::period_field');
|
||
$grid->field('description')->label(url_lang::lang('texts.Description'));
|
||
|
||
if ($this->acl_check_edit('Phone_invoices_Controller', 'dumps') ||
|
||
($phone_inv_model->locked == 0 &&
|
||
... | ... | |
->callback('Phone_invoices_Controller::private_field_locked');
|
||
}
|
||
|
||
$grid->callback_field('price')->label(url_lang::lang('texts.Price'))
|
||
->callback('Phone_invoices_Controller::price_field');
|
||
$grid->callback_field('period')->label(url_lang::lang('texts.Period'))
|
||
->callback('Phone_invoices_Controller::period_field');
|
||
$grid->field('description')->label(url_lang::lang('texts.Description'));
|
||
|
||
$grid->datasource($sms->get_sms_mesages_from($phone_inv_user_model->id));
|
||
|
||
$heading = url_lang::lang('texts.SMS messages');
|
freenetis/branches/testing/application/views/main.php | ||
---|---|---|
<?php echo html::script('media/js/jquery.validate.password', FALSE) ?>
|
||
<?php echo html::script('media/js/jquery.metadata', FALSE) ?>
|
||
<?php echo html::script('media/js/jquery.tablesorter.min', FALSE) ?>
|
||
<?php echo html::script('media/js/jquery.form.min', FALSE) ?>
|
||
<?php echo html::script('media/js/messages_cs', FALSE) ?>
|
||
<?php // echo html::script('media/js/redirection', FALSE) ?>
|
||
<?php echo html::script('media/js/highslide/highslide-with-html.js', FALSE) ?>
|
freenetis/branches/testing/application/views/users/contacts_import.php | ||
---|---|---|
/** @var array */
|
||
var users_names = [
|
||
<?php foreach ($users_names as $user_name):
|
||
echo '["' . $user_name->id . '", "' . $user_name->username . '"],';
|
||
echo '["' . $user_name->id . '", "' . $user_name->username . ' (' . $user_name->id . ')"],';
|
||
endforeach; ?>
|
||
];
|
||
/** @var string */
|
||
... | ... | |
|
||
$(document).ready(function ()
|
||
{
|
||
// submit form
|
||
$('#import_form').submit(function()
|
||
{
|
||
// valid data?
|
||
if ($(this).validate().form())
|
||
{
|
||
// submit the form
|
||
$.ajax({
|
||
success: im_ajax_response,
|
||
error: im_ajax_response_error,
|
||
async: false,
|
||
type: 'post',
|
||
dataType: 'json',
|
||
data: $(this).serialize(),
|
||
url: '<?php echo url_lang::base() ?>private_phone_contacts/import_save_ajax/<?php echo $user->id ?>/'
|
||
});
|
||
}
|
||
// return false to prevent normal browser submit and page navigation
|
||
return false;
|
||
});
|
||
// parse button click
|
||
$('#import_button').click(function ()
|
||
{
|
||
var input = $('#import_field');
|
||
... | ... | |
return false;
|
||
}
|
||
|
||
// lock form
|
||
$(this).hide();
|
||
input.attr('disabled', 'disabled');
|
||
|
||
// data
|
||
var contact;
|
||
var phone;
|
||
var counter = 0;
|
||
var contact_counter = 0;
|
||
// work with data
|
||
if (json.contacts && isArray(json.contacts))
|
||
... | ... | |
for (var u = 0; u < contact.phone.length; u++)
|
||
{
|
||
phone = contact.phone[u].v;
|
||
counter++;
|
||
// add default prefix, if there is no prefix
|
||
if (phone[0] != '+')
|
||
{
|
||
phone = '+' + default_phone_prefix + phone;
|
||
}
|
||
// create form
|
||
add_to_form(contact, phone, contact_counter);
|
||
add_to_form(contact, phone, counter, contact_counter);
|
||
}
|
||
}
|
||
}
|
||
... | ... | |
});
|
||
|
||
/**
|
||
* Post-submit success callback
|
||
*/
|
||
function im_ajax_response(responseJSON)
|
||
{
|
||
// is error?
|
||
if (responseJSON.success == undefined)
|
||
{
|
||
alert(responseJSON.error);
|
||
}
|
||
else
|
||
{
|
||
// change form to read
|
||
$('#submit_button').hide();
|
||
$('#th_delete').text('<?php echo url_lang::lang('texts.State') ?>');
|
||
$('#import_form_table').find(':input').attr('disabled', 'disabled');
|
||
// display result
|
||
for (var i = 0; i < responseJSON.success.length; i++)
|
||
{
|
||
var id = responseJSON.success[i].id;
|
||
var status = responseJSON.success[i].status;
|
||
|
||
if (status % 2 == 0)
|
||
{ // saved
|
||
$('#td_delete_'+id).html('<?php echo html::image(array(
|
||
'src' => 'media/images/states/good_16x16.png',
|
||
'title' => url_lang::lang('texts.Added')
|
||
)) ?>');
|
||
}
|
||
else if (status == 5)
|
||
{ // already in
|
||
$('#td_delete_'+id).html('<?php echo html::image(array(
|
||
'src' => 'media/images/states/warning_16x16.png',
|
||
'title' => url_lang::lang('texts.Contact is owned by another user')
|
||
)) ?>');
|
||
}
|
||
else
|
||
{ // already in
|
||
$('#td_delete_'+id).html('<?php echo html::image(array(
|
||
'src' => 'media/images/states/readonly_16x16.png',
|
||
'title' => url_lang::lang('texts.Contact is already in database')
|
||
)) ?>');
|
||
}
|
||
}
|
||
// saved
|
||
$('#import_message').text('<?php echo url_lang::lang('texts.Import has been successfully finished') ?>');
|
||
$('#import_message').show();
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Post-submit error callback
|
||
*/
|
||
function im_ajax_response_error(jqXHR, textStatus, errorThrown)
|
||
{
|
||
alert('<?php echo url_lang::lang('texts.Cannot save form') ?>:\n' +
|
||
textStatus + '\n' + errorThrown);
|
||
}
|
||
|
||
/**
|
||
* Create form with given data
|
||
*/
|
||
function add_to_form(contact, phone, count)
|
||
function add_to_form(contact, phone, count, count_contact)
|
||
{
|
||
var table = $('#import_form_table');
|
||
|
||
table.append('<tr' + ((count%2) ? ' class="even"' : '') + '>\
|
||
//
|
||
table.append('<tr' + ((count_contact%2) ? ' class="even"' : '') + '>\
|
||
<td><input name="im_name['+count+']" type="text" value="' +
|
||
contact.firstname + ' ' + (contact.middlename ? contact.middlename + ' ' : '') +
|
||
contact.lastname + '" /></td>\
|
||
contact.lastname + '" class="required" /></td>\
|
||
<input name="im_namef['+count+']" type="hidden" value="' +
|
||
contact.firstname + '" />\
|
||
<input name="im_namel['+count+']" type="hidden" value="' +
|
||
... | ... | |
<select name="im_contact['+count+']" disabled="disabled">' +
|
||
users_names_options + '</select>\
|
||
</td>\
|
||
<?php else: ?>\
|
||
<input name="im_private['+count+']" type="hidden" value="1" />\
|
||
<?php endif; ?>\
|
||
<td><a href="#" onclick="return im_delete_row(this);">' + del + '</a></td>\
|
||
<td id="td_delete_'+count+'"><a href="#" onclick="return im_delete_row(this);">' + del + '</a></td>\
|
||
</tr>');
|
||
}
|
||
|
Také k dispozici: Unified diff
- Import telefonich kontaktu ze serveru funanbol.
- Inteligentni vyber telefonich faktur vidi jen do minulosti.
- Zmena pozice sloupce se soukromym checkboxem v telefonnich fakturach.