Tribe__Tickets_Plus__Meta__Export::apply_checkbox_label()

Retrieves the label value for the checkbox that is checked in the attendees list.

This method allows plugins to remove support for checkbox field values being displayed or override the text shown.


Return

(string|false) Label value of checkbox that is checked, or false to turn off label support.


Top ↑

Source

File: src/Tribe/Meta/Export.php

	public function apply_checkbox_label() {
		/**
		 * Allow plugins to remove support for checkbox field values being displayed or override the text shown.
		 *
		 * @since 4.10.4
		 *
		 * @param string|false $checkbox_label Label value of checkbox that is checked, return false to turn off label support.
		 */
		return apply_filters( 'tribe_events_tickets_plus_attendees_list_checkbox_label', __( 'Checked', 'event-tickets-plus' ) );
	}

Top ↑

Changelog

Changelog
Version Description
5.10.2 Introduced.