FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
latepoint
/
lib
/
helpers
Edit File: support_topics_helper.php
<?php class OsSupportTopicsHelper { public static function get_title_for_topic( string $topic ): string { $topic_titles = [ 'payment_request' => __( 'Payment Request', 'latepoint' ), ]; return $topic_titles[ $topic ] ?? __( 'Information', 'latepoint' ); } }
Save
Back