Ejemplo n.º 1
0
/**
 * View for requesting another eMail verification token
 */
function User_request_verification_token_view()
{
    return page_with_title(user_request_verification_token_title(), array(msg(), _("We will resend an e-mail including the verification link. Please use the email address you used for registration."), form(array(form_text('email', _("E-Mail"), ""), form_submit('submit', _("Resend"))))));
}
Ejemplo n.º 2
0
     require_once realpath(__DIR__ . '/../includes/pages/user_ical.php');
     user_ical();
 } elseif ($p == "atom") {
     require_once realpath(__DIR__ . '/../includes/pages/user_atom.php');
     user_atom();
 } elseif ($p == "shifts_json_export") {
     require_once realpath(__DIR__ . '/../includes/controller/shifts_controller.php');
     shifts_json_export_controller();
 } elseif ($p == "shifts_json_export_all") {
     require_once realpath(__DIR__ . '/../includes/controller/shifts_controller.php');
     shifts_json_export_all_controller();
 } elseif ($p == "stats") {
     require_once realpath(__DIR__ . '/../includes/pages/guest_stats.php');
     guest_stats();
 } elseif ($p == "user_resend_verification_token") {
     $title = user_request_verification_token_title();
     $content = user_resend_verification_token();
 } elseif ($p == "user_password_recovery") {
     require_once realpath(__DIR__ . '/../includes/controller/users_controller.php');
     $title = user_password_recovery_title();
     $content = user_password_recovery_controller();
 } elseif ($p === "user_activate_account") {
     $title = user_activate_account_title();
     $content = user_activate_account_controller();
 } elseif ($p == "angeltypes") {
     list($title, $content) = angeltypes_controller();
 } elseif ($p == "shifts") {
     list($title, $content) = shifts_controller();
 } elseif ($p == "users") {
     list($title, $content) = users_controller();
 } elseif ($p == "user_angeltypes") {