You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
697 B

<?php
require_once("$CFG->libdir/formslib.php");
class searchform extends moodleform {
function definition() {
global $CFG;
$mform = $this->_form; // Don't forget the underscore!
$attributes=array('size'=>'20');
$selSituacao = $mform->addElement('select', 'situacao', get_string('situacao', 'block_fale_conosco'),
array('Não respondidas', 'Respondidas'), $attributes);
$selSituacao->setMultiple(false);
$attributes=array('size'=>'20');
// $txtUsuario = $mform->addElement('text', 'usuario', get_string('usuario', 'block_fale_conosco'), $attributes);
// $mform->addElement('button', 'Atualizar', get_string("atualizar", "block_fale_conosco"));
}
}