Widget_Abstract::form( $instance )
{@inheritDoc}
Source
File: src/Tribe/Widget/Widget_Abstract.php
public function form( $instance ) {
$this->setup( [], $instance );
// Specifically on the admin we force the admin fields into the arguments.
$this->arguments['admin_fields'] = $this->get_admin_fields();
$this->toggle_hooks( true );
$html = $this->get_admin_html( $this->get_arguments() );
$this->toggle_hooks( false );
return $html;
}