FriendsOfREDAXO / poll

Erstellt und verwaltet Umfragen in REDAXO 5, bei Bedarf mit E-Mailbestätigung.
MIT License
36 stars 2 forks source link

Auswahl einbauen Mehrfachauswahl zulassen oder nicht #31

Open fietstouring opened 1 year ago

fietstouring commented 1 year ago

dann statt Radios Checkboxen ausgeben

fietstouring commented 1 year ago

für checkboxen hab ich das auf die Schnelle so geändert (Formularfeld choice auf Mehrfachauswahl stellen mit 1 statt 0)

<?php

class rex_poll_option extends \rex_yform_manager_dataset
{
    public function getHits()
    {
        $hits = rex_poll_vote::query()
            //->where('option_id', $this->getId())
            ->whereRaw('FIND_IN_SET('. $this->getId(). ', option_id) AND status = 1')
            //->where('status', 1)
            ->find();

        return count($hits);
    }
}