%PDF- %PDF-
| Direktori : /home/vacivi36/intranet.vacivitta.com.br/protected/modules/polls/widgets/ |
| Current File : /home/vacivi36/intranet.vacivitta.com.br/protected/modules/polls/widgets/AddAnswerInput.php |
<?php
namespace humhub\modules\polls\widgets;
use humhub\components\Widget;
/**
* PollWallEntryWidget is used to display a poll inside the stream.
*
* This Widget will used by the Poll Model in Method getWallOut().
*
* @package humhub.modules.polls.widgets
* @since 0.5
* @author Luke
*/
class AddAnswerInput extends Widget
{
public $name;
public $showTitle;
public function run()
{
return $this->render('addAnswersInput', ['name' => $this->name, 'showTitle' => $this->showTitle]);
}
}
?>