Adaptación de los formularios a iOS (iPhone / iPod)
git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_FormulariosCalidad/trunk@12 e2c41b2c-0c6f-0149-8b81-50b1a9191bb3
@ -691,7 +691,7 @@ Instrucciones para los usuarios
|
|||||||
<div class="left">
|
<div class="left">
|
||||||
<input id="form_success_message_option" name="confirmation" class="radio" value="" checked="checked" tabindex="8" onclick="update_form('', 'redirect'); Element.removeClassName('form_success_message', 'hide');Element.addClassName('form_redirect_url', 'hide')" type="radio">
|
<input id="form_success_message_option" name="confirmation" class="radio" value="" checked="checked" tabindex="8" onclick="update_form('', 'redirect'); Element.removeClassName('form_success_message', 'hide');Element.addClassName('form_redirect_url', 'hide')" type="radio">
|
||||||
<label class="choice" for="form_success_message_option">Mostrar mensaje</label>
|
<label class="choice" for="form_success_message_option">Mostrar mensaje</label>
|
||||||
<a class="tooltip" title="Success Message" rel="Se mostrará el mensaje que se indique después de que los usuarios hayan enviado sus respuestas.">(?)</a>
|
<a class="tooltip" title="Mensaje a mostrar después del envio" rel="Se mostrará el mensaje que se indique después de que los usuarios hayan enviado sus respuestas.">(?)</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="right">
|
<div class="right">
|
||||||
|
|||||||
@ -1,96 +1,97 @@
|
|||||||
<?php
|
<?php
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
MachForm
|
MachForm
|
||||||
|
|
||||||
Copyright 2007 Appnitro Software. This code cannot be redistributed without
|
Copyright 2007 Appnitro Software. This code cannot be redistributed without
|
||||||
permission from http://www.appnitro.com/
|
permission from http://www.appnitro.com/
|
||||||
|
|
||||||
More info at: http://www.appnitro.com/
|
More info at: http://www.appnitro.com/
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
global $lang;
|
global $lang;
|
||||||
|
|
||||||
//simple name and extended name
|
//simple name and extended name
|
||||||
$lang['name_first'] = 'Primero';
|
$lang['name_first'] = 'Primero';
|
||||||
$lang['name_last'] = 'Último';
|
$lang['name_last'] = 'Último';
|
||||||
$lang['name_title'] = 'Título';
|
$lang['name_title'] = 'Título';
|
||||||
$lang['name_suffix'] = 'Sufijo';
|
$lang['name_suffix'] = 'Sufijo';
|
||||||
|
|
||||||
//address
|
//address
|
||||||
$lang['address_street'] = 'Dirección';
|
$lang['address_street'] = 'Dirección';
|
||||||
$lang['address_street2'] = 'Dirección (cont)';
|
$lang['address_street2'] = 'Dirección (cont)';
|
||||||
$lang['address_city'] = 'Población';
|
$lang['address_city'] = 'Población';
|
||||||
$lang['address_state'] = 'Provincia';
|
$lang['address_state'] = 'Provincia';
|
||||||
$lang['address_zip'] = 'Código postal';
|
$lang['address_zip'] = 'Código postal';
|
||||||
$lang['address_country'] = 'País';
|
$lang['address_country'] = 'País';
|
||||||
|
|
||||||
//captcha
|
//captcha
|
||||||
$lang['captcha_required'] = 'Este campo es obligatorio. Por favor, introduzca las letras que aparecen en la imagen.';
|
$lang['captcha_required'] = 'Este campo es obligatorio. Por favor, introduzca las letras que aparecen en la imagen.';
|
||||||
$lang['captcha_mismatch'] = 'No coinciden las letras introducidas con las que aparecen en la imagen. Por favor, inténtelo otra vez.';
|
$lang['captcha_mismatch'] = 'No coinciden las letras introducidas con las que aparecen en la imagen. Por favor, inténtelo otra vez.';
|
||||||
$lang['captcha_error'] = 'Se ha producido un error en el proceso. Por favor, inténtelo otra vez.';
|
$lang['captcha_error'] = 'Se ha producido un error en el proceso. Por favor, inténtelo otra vez.';
|
||||||
$lang['captcha_title'] = 'Introduzca las letras que aparecen en la imagen de abajo.';
|
$lang['captcha_title'] = 'Introduzca las letras que aparecen en la imagen de abajo.';
|
||||||
|
|
||||||
//date
|
//date
|
||||||
$lang['date_dd'] = 'DD';
|
$lang['date_dd'] = 'DD';
|
||||||
$lang['date_mm'] = 'MM';
|
$lang['date_mm'] = 'MM';
|
||||||
$lang['date_yyyy'] = 'YYYY';
|
$lang['date_yyyy'] = 'YYYY';
|
||||||
|
|
||||||
//price
|
//price
|
||||||
$lang['price_dollar_main'] = 'Dólares';
|
$lang['price_dollar_main'] = 'Dólares';
|
||||||
$lang['price_dollar_sub'] = 'Centavos';
|
$lang['price_dollar_sub'] = 'Centavos';
|
||||||
$lang['price_euro_main'] = 'Euros';
|
$lang['price_euro_main'] = 'Euros';
|
||||||
$lang['price_euro_sub'] = 'Céntimos';
|
$lang['price_euro_sub'] = 'Céntimos';
|
||||||
$lang['price_pound_main'] = 'Libras';
|
$lang['price_pound_main'] = 'Libras';
|
||||||
$lang['price_pound_sub'] = 'Peniques';
|
$lang['price_pound_sub'] = 'Peniques';
|
||||||
$lang['price_yen'] = 'Yenes';
|
$lang['price_yen'] = 'Yenes';
|
||||||
|
|
||||||
//time
|
//time
|
||||||
$lang['time_hh'] = 'HH';
|
$lang['time_hh'] = 'HH';
|
||||||
$lang['time_mm'] = 'MM';
|
$lang['time_mm'] = 'MM';
|
||||||
$lang['time_ss'] = 'SS';
|
$lang['time_ss'] = 'SS';
|
||||||
|
|
||||||
//error message
|
//error message
|
||||||
$lang['error_title'] = 'Se ha producido un error en su envio.';
|
$lang['error_title'] = 'Se ha producido un error en su envio.';
|
||||||
$lang['error_desc'] = 'Los errores están <strong>resaltados</strong> abajo.';
|
$lang['error_desc'] = 'Los errores están <strong>resaltados</strong> abajo.';
|
||||||
|
|
||||||
//form buttons
|
//form buttons
|
||||||
$lang['submit_button'] = 'Enviar';
|
$lang['submit_button'] = 'Enviar';
|
||||||
$lang['continue_button'] = 'Continuar';
|
$lang['continue_button'] = 'Continuar';
|
||||||
$lang['back_button'] = 'Atrás';
|
$lang['back_button'] = 'Atrás';
|
||||||
|
|
||||||
//form status
|
//form status
|
||||||
$lang['form_inactive'] = 'Este formulario está actualmente desactivado.';
|
$lang['form_inactive'] = 'Este formulario está actualmente desactivado.';
|
||||||
|
|
||||||
//form password
|
//form password
|
||||||
$lang['form_pass_title'] = 'El acceso a este formulario está protegido por contraseña.';
|
$lang['form_pass_title'] = 'El acceso a este formulario está protegido por contraseña.';
|
||||||
$lang['form_pass_desc'] = 'Por favor, introduzca la contraseña.';
|
$lang['form_pass_desc'] = 'Por favor, introduzca la contraseña.';
|
||||||
$lang['form_pass_invalid'] = '¡La contraseña no es correcta!';
|
$lang['form_pass_invalid'] = '¡La contraseña no es correcta!';
|
||||||
|
$lang['form_pass_word'] = 'Contraseña';
|
||||||
|
|
||||||
//form review
|
//form review
|
||||||
$lang['review_title'] = 'Revise sus datos';
|
$lang['review_title'] = 'Revise sus datos';
|
||||||
$lang['review_message'] = 'Por favor, revise los datos que ha introducido. Cuando esté conforme, pulse el botón Enviar para terminar.';
|
$lang['review_message'] = 'Por favor, revise los datos que ha introducido. Cuando esté conforme, pulse el botón Enviar para terminar.';
|
||||||
|
|
||||||
//validation message
|
//validation message
|
||||||
$lang['val_required'] = 'Este campo es obligatorio. Por favor, introduzca un valor.';
|
$lang['val_required'] = 'Este campo es obligatorio. Por favor, introduzca un valor.';
|
||||||
$lang['val_required_file'] = 'Este campo es obligatorio. Por favor, indique un fichero.';
|
$lang['val_required_file'] = 'Este campo es obligatorio. Por favor, indique un fichero.';
|
||||||
$lang['val_unique'] = 'Este campo requiere un valor único y este valor ya ha sido usado.';
|
$lang['val_unique'] = 'Este campo requiere un valor único y este valor ya ha sido usado.';
|
||||||
$lang['val_integer'] = 'El valor introducido tiene que ser un valor entero.';
|
$lang['val_integer'] = 'El valor introducido tiene que ser un valor entero.';
|
||||||
$lang['val_float'] = 'El valor introducido tiene que ser un valor flotante.';
|
$lang['val_float'] = 'El valor introducido tiene que ser un valor flotante.';
|
||||||
$lang['val_numeric'] = 'El valor introducido tiene que ser un número.';
|
$lang['val_numeric'] = 'El valor introducido tiene que ser un número.';
|
||||||
$lang['val_min'] = 'El valor de este campo no puede ser menor de %s caracteres.';
|
$lang['val_min'] = 'El valor de este campo no puede ser menor de %s caracteres.';
|
||||||
$lang['val_max'] = 'El valor de este campo no puede ser mayor de %s caracteres.';
|
$lang['val_max'] = 'El valor de este campo no puede ser mayor de %s caracteres.';
|
||||||
$lang['val_range'] = 'El valor de este campo no está dentro del rango de %s a %s caracteres.';
|
$lang['val_range'] = 'El valor de este campo no está dentro del rango de %s a %s caracteres.';
|
||||||
$lang['val_email'] = 'Este campo no tiene una dirección de correo electrónico válida.';
|
$lang['val_email'] = 'Este campo no tiene una dirección de correo electrónico válida.';
|
||||||
$lang['val_website'] = 'Este campo no tiene una dirección web válida.';
|
$lang['val_website'] = 'Este campo no tiene una dirección web válida.';
|
||||||
$lang['val_username'] = 'Los caracteres de este campo sólo pueden contener letras (a-z), números (0-9) y guiones bajos.';
|
$lang['val_username'] = 'Los caracteres de este campo sólo pueden contener letras (a-z), números (0-9) y guiones bajos.';
|
||||||
$lang['val_equal'] = '%s debe coincidir.';
|
$lang['val_equal'] = '%s debe coincidir.';
|
||||||
$lang['val_date'] = 'Este campo no tiene una fecha correcta.';
|
$lang['val_date'] = 'Este campo no tiene una fecha correcta.';
|
||||||
$lang['val_time'] = 'Este campo no tiene una hora correcta.';
|
$lang['val_time'] = 'Este campo no tiene una hora correcta.';
|
||||||
$lang['val_phone'] = 'Por favor, introduzca un número de teléfono válido.';
|
$lang['val_phone'] = 'Por favor, introduzca un número de teléfono válido.';
|
||||||
$lang['val_filetype'] = 'The filetype you are attempting to upload is not allowed.';
|
$lang['val_filetype'] = 'The filetype you are attempting to upload is not allowed.';
|
||||||
|
|
||||||
//fields on excel/csv
|
//fields on excel/csv
|
||||||
$lang['export_num'] = 'Num.';
|
$lang['export_num'] = 'Num.';
|
||||||
$lang['date_created'] = 'Fecha de creación';
|
$lang['date_created'] = 'Fecha de creación';
|
||||||
$lang['date_updated'] = 'Fecha de actualización';
|
$lang['date_updated'] = 'Fecha de actualización';
|
||||||
$lang['ip_address'] = 'Dirección IP';
|
$lang['ip_address'] = 'Dirección IP';
|
||||||
?>
|
?>
|
||||||
2597
includes/mobile-view-functions.php
Normal file
2502
includes/standard-view-functions.php
Normal file
1138
mobile/apple/css/developer-style.css
Normal file
72
mobile/apple/css/forms.css
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
.required {
|
||||||
|
color: #CC0000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.guidelines {
|
||||||
|
position:relative;
|
||||||
|
font-weight:normal;
|
||||||
|
font-size:14px;
|
||||||
|
right:20px;
|
||||||
|
left:9px;
|
||||||
|
color:#4C4C4C;
|
||||||
|
padding:1px 0 3px 8px;
|
||||||
|
margin: 0;
|
||||||
|
width:90%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.error
|
||||||
|
{
|
||||||
|
position:relative;
|
||||||
|
font-weight:normal;
|
||||||
|
font-size:14px;
|
||||||
|
left:9px;
|
||||||
|
padding:1px 8px 3px 8px;
|
||||||
|
color:#CC0000 !important;
|
||||||
|
margin: 0;
|
||||||
|
width:90%;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.error_message
|
||||||
|
{
|
||||||
|
background-color:#FFDFDF !important;
|
||||||
|
border-color:#c7a9aa;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.success_message
|
||||||
|
{
|
||||||
|
background-color:#ccffcc !important;
|
||||||
|
border-color:#89ba8a;
|
||||||
|
}
|
||||||
|
|
||||||
|
input.small
|
||||||
|
{
|
||||||
|
width:25%;
|
||||||
|
}
|
||||||
|
|
||||||
|
input.medium
|
||||||
|
{
|
||||||
|
width:50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
input.large
|
||||||
|
{
|
||||||
|
width:99%;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea.small
|
||||||
|
{
|
||||||
|
width:98%;
|
||||||
|
height:2.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea.medium
|
||||||
|
{
|
||||||
|
width:98%;
|
||||||
|
height:5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea.large
|
||||||
|
{
|
||||||
|
width:98%;
|
||||||
|
height:7.5em;
|
||||||
|
}
|
||||||
1
mobile/apple/css/style.css
Normal file
BIN
mobile/apple/images/0stars.png
Normal file
|
After Width: | Height: | Size: 314 B |
BIN
mobile/apple/images/0starsborder.png
Normal file
|
After Width: | Height: | Size: 363 B |
BIN
mobile/apple/images/1stars.png
Normal file
|
After Width: | Height: | Size: 456 B |
BIN
mobile/apple/images/1starsborder.png
Normal file
|
After Width: | Height: | Size: 482 B |
BIN
mobile/apple/images/2stars.png
Normal file
|
After Width: | Height: | Size: 467 B |
BIN
mobile/apple/images/2starsborder.png
Normal file
|
After Width: | Height: | Size: 501 B |
BIN
mobile/apple/images/3stars.png
Normal file
|
After Width: | Height: | Size: 470 B |
BIN
mobile/apple/images/3starsborder.png
Normal file
|
After Width: | Height: | Size: 506 B |
BIN
mobile/apple/images/4stars.png
Normal file
|
After Width: | Height: | Size: 455 B |
BIN
mobile/apple/images/4starsborder.png
Normal file
|
After Width: | Height: | Size: 503 B |
BIN
mobile/apple/images/5stars.png
Normal file
|
After Width: | Height: | Size: 393 B |
BIN
mobile/apple/images/arrow.png
Normal file
|
After Width: | Height: | Size: 361 B |
BIN
mobile/apple/images/checkbox.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
mobile/apple/images/home.png
Normal file
|
After Width: | Height: | Size: 361 B |
BIN
mobile/apple/images/navbutton.png
Normal file
|
After Width: | Height: | Size: 571 B |
BIN
mobile/apple/images/navbuttonblack.png
Normal file
|
After Width: | Height: | Size: 493 B |
BIN
mobile/apple/images/navbuttonblue.png
Normal file
|
After Width: | Height: | Size: 664 B |
BIN
mobile/apple/images/navleft.png
Normal file
|
After Width: | Height: | Size: 826 B |
BIN
mobile/apple/images/navleftblack.png
Normal file
|
After Width: | Height: | Size: 810 B |
BIN
mobile/apple/images/navlinkleft.png
Normal file
|
After Width: | Height: | Size: 786 B |
BIN
mobile/apple/images/navlinkleftblack.png
Normal file
|
After Width: | Height: | Size: 737 B |
BIN
mobile/apple/images/navlinkright.png
Normal file
|
After Width: | Height: | Size: 804 B |
BIN
mobile/apple/images/navlinkrightblack.png
Normal file
|
After Width: | Height: | Size: 738 B |
BIN
mobile/apple/images/navright.png
Normal file
|
After Width: | Height: | Size: 845 B |
BIN
mobile/apple/images/navrightblack.png
Normal file
|
After Width: | Height: | Size: 861 B |
BIN
mobile/apple/images/play.gif
Normal file
|
After Width: | Height: | Size: 103 B |
BIN
mobile/apple/images/radiobutton.png
Normal file
|
After Width: | Height: | Size: 373 B |
BIN
mobile/apple/images/searchfield.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
mobile/apple/images/tributton.png
Normal file
|
After Width: | Height: | Size: 476 B |
29
mobile/apple/javascript/developer-functions.js
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
var iWebkit;
|
||||||
|
|
||||||
|
if (!iWebkit) {
|
||||||
|
|
||||||
|
iWebkit = window.onload = function () {
|
||||||
|
function fullscreen() {
|
||||||
|
var a = document.getElementsByTagName("a");
|
||||||
|
for (var i = 0; i < a.length;i++) {
|
||||||
|
if (a[i].className.match("noeffect")) {
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
a[i].onclick = function () {
|
||||||
|
window.location = this.getAttribute("href");
|
||||||
|
return false;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function hideURLbar() {
|
||||||
|
window.scrollTo(0, 0.9);
|
||||||
|
}
|
||||||
|
iWebkit.init = function () {
|
||||||
|
fullscreen();
|
||||||
|
hideURLbar();
|
||||||
|
};
|
||||||
|
iWebkit.init();
|
||||||
|
};
|
||||||
|
}
|
||||||
1
mobile/apple/javascript/functions.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
var iWebkit;if(!iWebkit){iWebkit=window.onload=function(){function fullscreen(){var a=document.getElementsByTagName("a");for(var i=0;i<a.length;i++){if(a[i].className.match("noeffect")){}else{a[i].onclick=function(){window.location=this.getAttribute("href");return false}}}}function hideURLbar(){window.scrollTo(0,0.9)}iWebkit.init=function(){fullscreen();hideURLbar()};iWebkit.init()}}
|
||||||
82
mobile/apple/php/rss.php
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
|
||||||
|
<?php
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// define the namespaces that we are interested in
|
||||||
|
$ns = array
|
||||||
|
(
|
||||||
|
"content" => "http://purl.org/rss/1.0/modules/content/",
|
||||||
|
"wfw" => "http://wellformedweb.org/CommentAPI/",
|
||||||
|
"dc" => "http://purl.org/dc/elements/1.1/"
|
||||||
|
);
|
||||||
|
// obtain the articles in the feeds, and construct an array of articles
|
||||||
|
|
||||||
|
$articles = array();
|
||||||
|
|
||||||
|
// step 1: get the feed
|
||||||
|
$blog_url = "HTTP://YOURSITE.COM/FEED.XML";
|
||||||
|
|
||||||
|
$rawFeed = file_get_contents($blog_url);
|
||||||
|
$xml = new SimpleXmlElement($rawFeed);
|
||||||
|
|
||||||
|
// step 2: extract the channel metadata
|
||||||
|
|
||||||
|
$channel = array();
|
||||||
|
$channel["title"] = $xml->channel->title;
|
||||||
|
$channel["link"] = $xml->channel->link;
|
||||||
|
$channel["description"] = $xml->channel->description;
|
||||||
|
$channel["pubDate"] = $xml->pubDate;
|
||||||
|
$channel["timestamp"] = strtotime($xml->pubDate);
|
||||||
|
$channel["generator"] = $xml->generator;
|
||||||
|
$channel["language"] = $xml->language;
|
||||||
|
|
||||||
|
// step 3: extract the articles
|
||||||
|
|
||||||
|
foreach ($xml->channel->item as $item)
|
||||||
|
{
|
||||||
|
$article = array();
|
||||||
|
$article["channel"] = $blog_url;
|
||||||
|
?>
|
||||||
|
<?php
|
||||||
|
$article["comments"] = $item->comments;
|
||||||
|
$article["timestamp"] = strtotime($item->pubDate);
|
||||||
|
?>
|
||||||
|
<ul class="pageitem">
|
||||||
|
<li class="textbox"><span class="header"> <?php echo $article["title"] = $item->title;?></span>
|
||||||
|
<?php echo $article["description"] = (string) trim($item->description);?>
|
||||||
|
</li>
|
||||||
|
<li class="menu">
|
||||||
|
<a href="<?php echo $article["link"] = $item->link;?>">
|
||||||
|
<img alt="Description" src="thumbs/safari.png" />
|
||||||
|
<span class="name">View</span>
|
||||||
|
<span class="comment"><?php echo $article["pubDate"] = $item->pubDate;?></span>
|
||||||
|
<span class="arrow"></span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<?php
|
||||||
|
$article["isPermaLink"] = $item->guid["isPermaLink"];
|
||||||
|
|
||||||
|
// get data held in namespaces
|
||||||
|
$content = $item->children($ns["content"]);
|
||||||
|
$dc = $item->children($ns["dc"]);
|
||||||
|
$wfw = $item->children($ns["wfw"]);
|
||||||
|
|
||||||
|
|
||||||
|
foreach ($dc->subject as $subject)
|
||||||
|
$article["subject"][] = (string)$subject;
|
||||||
|
|
||||||
|
$article["content"] = (string)trim($content->encoded);
|
||||||
|
$article["commentRss"] = $wfw->commentRss;
|
||||||
|
|
||||||
|
// add this article to the list
|
||||||
|
$articles[$article["timestamp"]] = $article;
|
||||||
|
}
|
||||||
|
|
||||||
|
// at this point, $channel contains all the metadata about the RSS feed,
|
||||||
|
// and $articles contains an array of articles for us to repurpose
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
?>
|
||||||
BIN
mobile/apple/thumbs/accessibility.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
mobile/apple/thumbs/appstore.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
mobile/apple/thumbs/basics.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
mobile/apple/thumbs/calculator.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
mobile/apple/thumbs/calendar.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
mobile/apple/thumbs/calendar2.png
Normal file
|
After Width: | Height: | Size: 536 B |
BIN
mobile/apple/thumbs/camera.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
mobile/apple/thumbs/clock.png
Normal file
|
After Width: | Height: | Size: 1014 B |
BIN
mobile/apple/thumbs/compass.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
mobile/apple/thumbs/contacts.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
mobile/apple/thumbs/help.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
mobile/apple/thumbs/ipod.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
mobile/apple/thumbs/itunes.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
mobile/apple/thumbs/iwebkit.png
Normal file
|
After Width: | Height: | Size: 839 B |
BIN
mobile/apple/thumbs/mail.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
mobile/apple/thumbs/maps.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
mobile/apple/thumbs/messages.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
mobile/apple/thumbs/music.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
mobile/apple/thumbs/nike+.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
mobile/apple/thumbs/notepad.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
mobile/apple/thumbs/other.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
mobile/apple/thumbs/otherapps.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
mobile/apple/thumbs/photos.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
mobile/apple/thumbs/plugin.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
mobile/apple/thumbs/safari.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
mobile/apple/thumbs/settings.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
mobile/apple/thumbs/sketches.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
mobile/apple/thumbs/sms.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
mobile/apple/thumbs/start.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
mobile/apple/thumbs/stocks.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
mobile/apple/thumbs/telephone.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
mobile/apple/thumbs/video.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
mobile/apple/thumbs/voice.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
mobile/apple/thumbs/weather.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
mobile/apple/thumbs/wordpress.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
mobile/apple/thumbs/youtube.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
4
save.php
@ -407,8 +407,8 @@
|
|||||||
/******** End processing review table **********************************************************/
|
/******** End processing review table **********************************************************/
|
||||||
|
|
||||||
|
|
||||||
$_SESSION['AP_SUCCESS']['title'] = 'Success';
|
$_SESSION['AP_SUCCESS']['title'] = 'Completado';
|
||||||
$_SESSION['AP_SUCCESS']['desc'] = 'Your form has been saved.';
|
$_SESSION['AP_SUCCESS']['desc'] = 'Se ha guardado el formulario.';
|
||||||
|
|
||||||
echo '{ "status" : "ok", "message" : "'.$form_id.'" }';
|
echo '{ "status" : "ok", "message" : "'.$form_id.'" }';
|
||||||
|
|
||||||
|
|||||||