Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
LLMS_Settings_Notifications::get_breadcrumbs( string $current_title )
Get a breadcrumb custom html for use on notification settings screens (not on the table)
Parameters Parameters
- $current_title
-
(string) (Required) The title of the current notification.
Return Return
(array)
Source Source
File: includes/admin/settings/class.llms.settings.notifications.php
private function get_breadcrumbs( $current_title ) { return array( 'id' => 'notification_options_breadcrumbs', 'type' => 'custom-html', 'value' => '<a href="' . esc_url( admin_url( 'admin.php?page=llms-settings&tab=notifications' ) ) . '">' . __( 'All Notifications', 'lifterlms' ) . '</a> <small>></small> <strong>' . $current_title . '</strong>', ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.8.0 | Introduced. |