Link_Abstract::get_label( $view = null )
{@inheritDoc}
Source
File: src/Tribe/Views/V2/iCalendar/Links/Link_Abstract.php
public function get_label( View $view = null ) {
$slug = self::get_slug();
/**
* Allows filtering of the labels for the Calendar view labels.
*
* @since 5.12.0
*
* @param string $label The label that will be displayed.
* @param Link_Abstract $link_obj The link object the label is for.
* @param View $view The current View object.
*
* @return string $label The label that will be displayed.
*/
return apply_filters( "tec_views_v2_subscribe_links_{$slug}_label", $this->label, $this, $view );
}