Open fietstouring opened 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);
}
}
dann statt Radios Checkboxen ausgeben