%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/CloseButton.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 CloseButton extends Widget
{
public $poll;
public function run()
{
return $this->render('closeButton', ['poll' => $this->poll]);
}
}
?>