Widget_Month::action_components_after( $file, $name, $template )
Source
File: src/Tribe/Views/V2/Widgets/Widget_Month.php
public function action_components_after( $file, $name, $template ) {
if ( ! $template instanceof View_Template ) {
return;
}
$view_slug = $template->get_view()->get_slug();
if ( 'month' !== $view_slug && 'widget-month' !== $view_slug ) {
return;
}
return $this->get_shortcode_template()->template( 'components/view-more', $this->get_template_vars() );
}