Filters the myeduTrac welcome message title.
Overrides the myeduTrac default welcome message title with a customized one.
$app = \Liten\Liten::getInstance(); function etsis_custom_myet_welcome_message_title() { $title = 'Welcome to mySIS'; return $title; } $app->hook->add_filter( 'met_welcome_message_title', 'etsis_custom_myet_welcome_message_title' );
Since 6.2.2
met_welcome_message_title hook is located in app/src/functions/hook-function.php.