8889841cclixcotz/tcchp.clix.co.tz/wp-content/plugins/the-events-calendar/src/Tribe/Taxonomy/Event_Tag.php000064400000002452150515166640030032 0ustar00home $actions An array of action links to be displayed. * @param WP_Term $tag Term object. * * @return array An array of action links to be displayed */ public function event_tag_actions( $actions, WP_Term $tag ) { if ( 'post_tag' !== $tag->taxonomy ) { return $actions; } $link = tribe_events_get_url( [ 'tag' => $tag->slug, 'post_type' => 'tribe_events', 'eventDisplay' => 'default' ] ); if ( is_wp_error( $link ) ) { return $actions; } $events_label_singular = tribe_get_event_label_singular(); // Translators: %s: Event singular. $event_view = sprintf( _x( '%s View', 'The text used for the link to the event archive in the admin post tag list.', 'the-events-calendar' ), $events_label_singular ); $actions['event-view'] = ''; return $actions; } }