Widget_Abstract::widget( $args, $instance )
{@inheritDoc}
Source
File: src/Tribe/Widget/Widget_Abstract.php
public function widget( $args, $instance ) {
// Once the widget is rendered we trigger that it is in use.
static::widget_in_use( true );
$this->setup( $args, $instance );
$this->toggle_hooks( true );
$html = $this->get_html();
$this->toggle_hooks( false );
echo $html;
return $html;
}