I am using Osclass Beta theme. I need to add new page to user profile.
In theme's functions.php page i can see this for Alerts page
$options[] = array('name' => __('Alerts', 'beta'), 'url' => osc_user_alerts_url(), 'class' => 'opt_alerts', 'icon' => 'fa-bullhorn', 'section' => 2);
So i added new part above it like this
$options[] = array('' => __('New Page', 'beta'), 'url' => osc_user_alerts_url(), 'class' => 'opt_alerts', 'icon' => 'fa-bullhorn', 'section' => 2);
but i can't understand where this function comes from and how it brings the link to like this "/user/alerts"
osc_user_alerts_url()