This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$( "#form-encuesta" ).submit(function(e) { | |
e.preventDefault(); | |
if( form.valid() ) { | |
jQuery.ajax({ | |
type : 'post', | |
dataType : 'json', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
<input class="submit-button" type="submit" value="Enviar"> | |
<?php wp_nonce_field( 'encuesta_action', 'encuesta_nonce_field' ); ?> | |
</form> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* crea registro con datos desde el formulario | |
*/ | |
function encuesta_ajax() { | |
// verifica nonce | |
if ( ! isset( $_POST['encuesta_nonce_field'] ) || ! wp_verify_nonce( $_POST['encuesta_nonce_field'], 'encuesta_action' ) ) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* crea registro con datos desde el formulario | |
*/ | |
function encuesta_ajax() { | |
// verifica nonce | |
if ( ! isset( $_POST['encuesta_nonce_field'] ) || ! wp_verify_nonce( $_POST['encuesta_nonce_field'], 'encuesta_action' ) ) { | |
print 'Lo siento, no verifica.'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* [encuesta] | |
* Imprime la aplicación encuesta | |
*/ | |
function encuesta_shortcode( $atts, $content = null ) { | |
global $encuesta_atts; | |
$encuesta_atts = shortcode_atts( array(), $atts ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="encuesta-container"> | |
<h2>¿Qué fue antes, el huevo o la gallina?</h2> | |
<form id="form-encuesta"> | |
<div class="encuesta-container-radio"> | |
<label for="radio-choice-1">Huevo</label> | |
<input type="radio" name="encuesta_radiochoices" id="radio-choice-1" tabindex="1" value="Huevo" required> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Devuelve el total de registros de la tabla encuesta | |
* @return int $total registros | |
*/ | |
function encuesta_get_registros() { | |
global $wpdb; | |
$table_name = $wpdb->prefix . "encuesta"; | |
$total = $wpdb->get_results( "SELECT * FROM $table_name" ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Devuelve el total de registros donde el campo respuesta es igual valor $respuesta | |
* @param string $valor respuesta | |
* @return int $registros total registros | |
*/ | |
function encuesta_get_registros_respuesta( $respuesta ) { | |
if( $respuesta ) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* [encuesta-resultados] | |
* Imprime los resultados de la encuesta | |
*/ | |
function encuesta_resultados_shortcode( $atts, $content = null ) { | |
global $encuesta_resultados_atts; | |
$encuesta_resultados_atts = shortcode_atts( array(), $atts ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="encuesta-resultados-container"> | |
<h2>Resultados</h2> | |
<h3>Total: <?php echo encuesta_get_registros();?></h3> | |
<h3>Huevo: <?php echo encuesta_get_registros_respuesta( 'Huevo' );?></h3> | |
<h3>Gallina: <?php echo encuesta_get_registros_respuesta( 'Gallina' );?></h3> | |
</div> |