activities_helper.php
4 months ago
agent_helper.php
4 months ago
analytics_helper.php
2 weeks ago
auth_helper.php
1 week ago
blocks_helper.php
3 weeks ago
booking_helper.php
1 week ago
bricks_helper.php
4 months ago
bundles_helper.php
1 week ago
calendar_helper.php
1 week ago
carts_helper.php
4 months ago
connector_helper.php
4 months ago
csv_helper.php
4 months ago
customer_helper.php
1 month ago
customer_import_helper.php
1 month ago
database_helper.php
1 day ago
debug_helper.php
4 months ago
defaults_helper.php
4 months ago
elementor_helper.php
4 months ago
email_helper.php
4 months ago
encrypt_helper.php
4 months ago
events_helper.php
3 months ago
form_helper.php
4 months ago
icalendar_helper.php
4 months ago
image_helper.php
4 months ago
invoices_helper.php
1 day ago
license_helper.php
4 months ago
location_helper.php
4 months ago
marketing_systems_helper.php
4 months ago
meeting_systems_helper.php
4 months ago
menu_helper.php
3 weeks ago
meta_helper.php
4 months ago
migrations_helper.php
4 months ago
money_helper.php
3 months ago
notifications_helper.php
4 months ago
nps_survey_helper.php
4 months ago
order_intent_helper.php
2 months ago
orders_helper.php
4 days ago
otp_helper.php
3 months ago
pages_helper.php
4 months ago
params_helper.php
4 months ago
payments_helper.php
4 days ago
plugin_version_update_helper.php
2 months ago
price_breakdown_helper.php
4 months ago
process_jobs_helper.php
4 months ago
processes_helper.php
4 months ago
razorpay_connect_helper.php
1 day ago
replacer_helper.php
4 months ago
resource_helper.php
1 week ago
roles_helper.php
3 weeks ago
router_helper.php
4 months ago
service_helper.php
4 months ago
sessions_helper.php
4 months ago
settings_helper.php
2 weeks ago
short_links_systems_helper.php
4 months ago
shortcodes_helper.php
3 weeks ago
sms_helper.php
4 months ago
steps_helper.php
1 day ago
stripe_connect_helper.php
2 weeks ago
styles_helper.php
4 months ago
support_topics_helper.php
4 months ago
time_helper.php
2 months ago
timeline_helper.php
2 months ago
transaction_helper.php
1 month ago
transaction_intent_helper.php
4 months ago
util_helper.php
1 month ago
version_specific_updates_helper.php
1 day ago
whatsapp_helper.php
1 month ago
work_periods_helper.php
3 months ago
wp_datetime.php
4 months ago
wp_user_helper.php
4 months ago
short_links_systems_helper.php
27 lines
| 1 | <?php |
| 2 | |
| 3 | class OsShortLinksSystemsHelper { |
| 4 | |
| 5 | |
| 6 | public static function is_external_short_links_system_enabled( string $external_short_links_system_code ): bool { |
| 7 | return OsSettingsHelper::is_on( 'enable_' . $external_short_links_system_code ); |
| 8 | } |
| 9 | |
| 10 | public static function get_list_of_external_short_links_systems( $enabled_only = false ) { |
| 11 | $external_short_links_systems = []; |
| 12 | /** |
| 13 | * Returns an array of external short links systems |
| 14 | * |
| 15 | * @since 5.1.94 |
| 16 | * @hook latepoint_list_of_external_short_links_systems |
| 17 | * |
| 18 | * @param {array} array of short links systems |
| 19 | * @param {bool} filter to return only short links systems that are enabled |
| 20 | * |
| 21 | * @returns {array} The array of external short links systems |
| 22 | * |
| 23 | */ |
| 24 | return apply_filters( 'latepoint_list_of_external_short_links_systems', $external_short_links_systems, $enabled_only ); |
| 25 | } |
| 26 | } |
| 27 |