Tribe__Admin__Help_Page::get_calendar_extensions()
Defines calendar extensions and displays them in the UI.
Return
(array) of extensions which are displayed on the calendar and community tab of the in-app help page.
Source
File: src/Tribe/Admin/Help_Page.php
public function get_calendar_extensions() {
$extensions = apply_filters( 'tec_help_calendar_extensions', [
[
'title' => __( 'Calendar widget areas', 'tribe-common' ),
'description' => __( 'This extension creates a useful variety of WordPress widget areas (a.k.a. sidebars).', 'tribe-common' ),
'link' => 'https://evnt.is/1arc',
'product-slug' => 'the-events-calendar',
],
[
'title' => __( 'Event block patterns', 'tribe-common' ),
'description' => __( 'This extension adds a set of block patterns for events to the WordPress block editor.', 'tribe-common' ),
'link' => 'https://evnt.is/1ard',
'product-slug' => 'the-events-calendar',
],
[
'title' => __( 'Alternative photo view', 'tribe-common' ),
'description' => __( 'This extension replaces photo view with a tiled grid of cards featuring event images.', 'tribe-common' ),
'link' => 'https://evnt.is/1are',
'product-slug' => 'events-calendar-pro',
],
[
'title' => __( 'The Events Calendar Tweaks', 'tribe-common' ),
'description' => __( 'This extension is a collection of tweaks and snippets for The Events Calendar.', 'tribe-common' ),
'link' => 'https://evnt.is/1arg',
'product-slug' => 'the-events-calendar',
],
] );
return $extensions;
}
Changelog
| Version | Description |
|---|---|
| 4.14.2 | Introduced. |