All_View::get_html()
{@inheritDoc}
Source
File: src/Tribe/Views/V2/Views/All_View.php
public function get_html() {
/*
* Since this view has historically being rendered with the `list` one let's allow developers to define
* templates for the `all` view, but fallback on the `list` one if not found.
*/
if ( $this->template->get_base_template_file() === $this->template->get_template_file() ) {
$this->template_slug = 'list';
}
return parent::get_html();
}