Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; plgSystemSlideshowckparams has a deprecated constructor in /home/bktelecomunicaci/public_html/plugins/system/slideshowckparams/slideshowckparams.php on line 12
Warning: Cannot modify header information - headers already sent by (output started at /home/bktelecomunicaci/public_html/plugins/system/slideshowckparams/slideshowckparams.php:12) in /home/bktelecomunicaci/public_html/libraries/foxcontact/loader/loader.php on line 33
Warning: Cannot modify header information - headers already sent by (output started at /home/bktelecomunicaci/public_html/plugins/system/slideshowckparams/slideshowckparams.php:12) in /home/bktelecomunicaci/public_html/libraries/foxcontact/loader/loader.php on line 33
Warning: Cannot modify header information - headers already sent by (output started at /home/bktelecomunicaci/public_html/plugins/system/slideshowckparams/slideshowckparams.php:12) in /home/bktelecomunicaci/public_html/libraries/foxcontact/loader/loader.php on line 33
Warning: Cannot modify header information - headers already sent by (output started at /home/bktelecomunicaci/public_html/plugins/system/slideshowckparams/slideshowckparams.php:12) in /home/bktelecomunicaci/public_html/libraries/foxcontact/loader/loader.php on line 33
Warning: Cannot modify header information - headers already sent by (output started at /home/bktelecomunicaci/public_html/plugins/system/slideshowckparams/slideshowckparams.php:12) in /home/bktelecomunicaci/public_html/libraries/foxcontact/loader/loader.php on line 33
if (typeof Fox == 'undefined')
{
Fox = {};
Fox.Strings =
{
add: function (object)
{
jQuery.extend(this, object);
return this;
}
};
Fox.Options =
{
// Fox.Options.add('key', {...});
add: function (key, data)
{
var o = {};
o[key] = data;
jQuery.extend(this, o);
return this;
},
// Return by copy: Fox.Options.get('key');
// Return by reference: Fox.Options['key'];
get: function (key)
{
return jQuery.extend({}, this[key]);
}
};
}
(function ()
{
Fox.Strings.add(
{
JCANCEL: "Cancelar",
COM_FOXCONTACT_BROWSE_FILES: "Examinar archivos",
COM_FOXCONTACT_FAILED: "Fallido",
COM_FOXCONTACT_SUCCESS: "Exitoso",
COM_FOXCONTACT_NO_RESULTS_MATCH: "No se encontraron resultados",
COM_FOXCONTACT_REMOVE_ALT: "Eliminar",
COM_FOXCONTACT_REMOVE_TITLE: "Eliminar este archivo"
}
);
Date.monthNames = ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"];
Date.dayNames = ["Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado"];
Date.monthNumbers = { "Enero": 0, "Febrero": 1, "Marzo": 2, "Abril": 3, "Mayo": 4, "Junio": 5, "Julio": 6, "Agosto": 7, "Septiembre": 8, "Octubre": 9, "Noviembre": 10, "Diciembre": 11 };
// Calendar default options
Fox.Options.add('calendar', {
dayOfWeekStart: JSON.parse("1"),
lang: 'dynamic',
step: 60,
i18n: {
dynamic: {
months: Date.monthNames,
dayOfWeek: ["Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb"]
}
}
});
Fox.Options.add('chosen', {
disable_search_threshold: 10,
allow_single_deselect: true,
no_results_text: Fox.Strings['COM_FOXCONTACT_NO_RESULTS_MATCH']
});
})();
// Emulate "placeholder" feature on outdated browsers
/*/home/bktelecomunicaci/public_html/media/com_foxcontact/js/placeholder.js*/
jQuery(document).ready(function ($)
{
// Create a new input object, then test if the placeholder attribute is an option inside that object.
// It will be an option in browsers that support placeholder text, and absent in those that don’t.
if (!('placeholder' in document.createElement('input')))
{
// Avoid the query string ?_=random at the end of the url
$.ajaxSetup({cache: true });
$.getScript('/media/com_foxcontact/js/placeholder.min.js');
}
});
/* Reset button | Reset input */
/*/home/bktelecomunicaci/public_html/media/com_foxcontact/js/reset.js*/
jQuery(document).ready(function ($)
{
if ($('.fox_form .reset-button').length)
{
// Avoid the query string ?_=random at the end of the url
$.ajaxSetup({cache: true });
$.getScript('/media/com_foxcontact/js/reset.min.js');
}
});
/* Captcha begin */
function ReloadFCaptcha(id)
{
var image = document.getElementById(id);
// Generates a unique id with an 8 digits fixed length
var uniqueid = Math.floor(Math.random() * Math.pow(10, 8));
image.src = image.src.replace(/uniqueid=[0-9]{8}/, "uniqueid=" + uniqueid);
}
function BuildReloadButton(id)
{
document.getElementById(id).src = document.getElementById(id).src.replace("transparent.gif", "reload-16.png");
}
/* Captcha end */
/* Enable the following function if you want to enable autofocus to the first input of the first form in the page */
/*
jQuery(document).ready(function ($)
{
jQuery('.fox_form').find('input[type=text]').filter(':visible:first').focus();
});
*/