Link_Abstract::get_single_label( $view = null )

{@inheritDoc}


Source

File: src/Tribe/Views/V2/iCalendar/Links/Link_Abstract.php

	public function get_single_label( View $view = null ) {
		$slug = self::get_slug();

		/**
		 * Allows filtering of the labels for the Single Event 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_single_subscribe_links_{$slug}_label", $this->single_label, $this, $view );
	}