Skip to content

Instantly share code, notes, and snippets.

View Dinamiko's full-sized avatar
💭
just coding stuff

Emili Castells Dinamiko

💭
just coding stuff
View GitHub Profile
$( "#form-encuesta" ).submit(function(e) {
e.preventDefault();
if( form.valid() ) {
jQuery.ajax({
type : 'post',
dataType : 'json',
...
<input class="submit-button" type="submit" value="Enviar">
<?php wp_nonce_field( 'encuesta_action', 'encuesta_nonce_field' ); ?>
</form>
</div>
<?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' ) ) {
<?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.';
<?php
/**
* [encuesta]
* Imprime la aplicación encuesta
*/
function encuesta_shortcode( $atts, $content = null ) {
global $encuesta_atts;
$encuesta_atts = shortcode_atts( array(), $atts );
<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>
<?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" );
<?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 ) {
<?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 );
<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>