Come includere la casella di controllo nel modulo back-end del widget?


17

Sto cercando di includere una casella di controllo nel mio back-end del widget. Ma non riesco a ottenere il valore (acceso o spento) dopo che l'utente lo ha inviato. Ho pensato che il valore sarebbe stato memorizzato in "esc_attr ($ check)" (com'è quando si usa un input di testo), ma non riesco a recuperarlo.

Questo è quello che sto provando ora:

public function form( $instance ) {
    $check = isset( $instance[ 'check' ] ) ? $instance[ 'check' ] : 'off';
    echo esc_attr( $check ); // If the input is type text it outputs the value
    ?>
    <input class="widefat" id="<?php echo $this->get_field_id( 'check' ); ?>" name="<?php echo $this->get_field_name( 'check' ); ?>" type="checkbox" />
    <?php 
}

Come posso farlo funzionare? Inoltre, come posso ottenere il valore della casella di controllo nel front-end?

Risposte:


22

Innanzitutto, sul widget delle funzioni :

function widget( $args, $instance ) {
    extract( $args );
    // Add this line
    $your_checkbox_var = $instance[ 'your_checkbox_var' ] ? 'true' : 'false';
    // Change 'your_checkbox_var' for your custom ID
    // ...
}

All'aggiornamento della funzione :

function update( $new_instance, $old_instance ) {
    $instance = $old_instance;
    // Add this line
    $instance[ 'your_checkbox_var' ] = $new_instance[ 'your_checkbox_var' ];
    // Change 'your_checkbox_var' for your custom ID
    // ...
    return $instance;
}

Infine, nel modulo funzione , aggiungi questo:

<p>
    <input class="checkbox" type="checkbox" <?php checked( $instance[ 'your_checkbox_var' ], 'on' ); ?> id="<?php echo $this->get_field_id( 'your_checkbox_var' ); ?>" name="<?php echo $this->get_field_name( 'your_checkbox_var' ); ?>" /> 
    <label for="<?php echo $this->get_field_id( 'your_checkbox_var' ); ?>">Label of your checkbox variable</label>
</p>
<!-- Remember to change 'your_checkbox_var' for your custom ID, as well -->

EDIT: Vediamo il codice completo di un widget 'Chi siamo' usando una casella di controllo per mostrare / nascondere un'immagine avatar:

class about_us extends WP_Widget {

function about_us() {
    $widget_ops = array( 'classname' => 'about_us', 'description' => __( 'About Us', 'wptheme' ) );
    $this->WP_Widget( 'about_us', __( 'About Us', 'wptheme' ), $widget_ops, $control_ops );
}

function widget( $args, $instance ) {
    extract( $args );
    $title = apply_filters( 'widget_title', $instance[ 'title' ] );
    $text = $instance[ 'text' ];
    // The following variable is for a checkbox option type
    $avatar = $instance[ 'avatar' ] ? 'true' : 'false';

    echo $before_widget;

        if ( $title ) {
            echo $before_title . $title . $after_title;
        }

        // Retrieve the checkbox
        if( 'on' == $instance[ 'avatar' ] ) : ?>
            <div class="about-us-avatar">
                <?php echo get_avatar( get_the_author_meta( 'user_email' ), '50', '' ); ?>
            </div>
        <?php endif; ?>

        <div class="textwidget">
            <p><?php echo esc_attr( $text ); ?></p>
        </div>

        <?php 
    echo $after_widget;
}

function update( $new_instance, $old_instance ) {
    $instance = $old_instance;
    $instance[ 'title' ] = strip_tags( $new_instance[ 'title' ] );
    $instance[ 'text' ] = strip_tags( $new_instance[ 'text' ] );
    // The update for the variable of the checkbox
    $instance[ 'avatar' ] = $new_instance[ 'avatar' ];
    return $instance;
}

function form( $instance ) {
    $defaults = array( 'title' => __( 'About Us', 'wptheme' ), 'avatar' => 'off' );
    $instance = wp_parse_args( ( array ) $instance, $defaults ); ?>
    <p>
        <label for="<?php echo $this->get_field_id( 'title' ); ?>">Title</label>
        <input class="widefat"  id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $instance[ 'title' ] ); ?>" />
    </p>
    <!-- The checkbox -->
    <p>
        <input class="checkbox" type="checkbox" <?php checked( $instance[ 'avatar' ], 'on' ); ?> id="<?php echo $this->get_field_id( 'avatar' ); ?>" name="<?php echo $this->get_field_name( 'avatar' ); ?>" /> 
        <label for="<?php echo $this->get_field_id( 'avatar' ); ?>">Show avatar</label>
    </p>
    <p>
        <label for="<?php echo $this->get_field_id( 'text' ); ?>">About Us</label>
        <textarea class="widefat" id="<?php echo $this->get_field_id( 'text' ); ?>" rows="10" cols="10" name="<?php echo $this->get_field_name( 'text' ); ?>"><?php echo esc_attr( $instance[ 'text' ] ); ?></textarea>
    </p>
<?php
}

}
register_widget( 'about_us' );

Testato e funzionante.

Modifica (2015-settembre-08): Importante! Quell'esempio di widget usa costruttori in stile PHP4, tuttavia WordPress 4.3 passa a PHP5, quindi dovresti cambiare anche i costruttori. Maggiori informazioni, qui .

Se usi il plugin "controllo del tema", vedrai un avviso che ti suggerisce di usare __construct()invece di WP_Widget. Rimuovere la prima funzione e aggiungere la seguente:

function __construct() {
    parent::__construct(
        'about_us', // Base ID
        __( 'About US', 'wptheme' ), // Name
        array( 'description' => __( 'About Us', 'wptheme' ), ) // Args
    );
}

Sì, lo uso su un widget per abilitare / disabilitare l'immagine dell'avatar. Funziona molto bene per me.
Gerard,

Ok. Penso che per maggiore chiarezza dovresti aggiungere nella risposta l'assegnazione predefinita per $instance['your_checkbox_var']il modulo di funzione.
gmazzap

L'assegnazione predefinita è "avatar" anziché "your_checkbox_var". Ho scritto "your_checkbox_var", in realtà, per fare più chiarezza. Comunque modificherò la mia risposta con l'esempio predefinito. Grazie per il consiglio :)
Gerard

@Gerard, prova a impostare l'avatar per impostazione predefinita e non sarai in grado di disattivarlo
Benn

Questo ha funzionato per me quando ho usato 'on' e 'off' invece di TRUe e Falso nella fuction. Ho anche usato un semplice controllo per l'istruzione if .. if ('on' = $ myinstance) {... my code ...}
The Skilled Family
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.