mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-11-04 06:22:13 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			932 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			932 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
class ValidationStatus
 | 
						|
{
 | 
						|
    const NOT_READY = 0;
 | 
						|
    const WAITING = 1;
 | 
						|
    const VALIDATED = 2;
 | 
						|
 | 
						|
    public static function getTranslatedName($status) {
 | 
						|
        switch ($status) {
 | 
						|
            case self::WAITING:
 | 
						|
                return "En attente de validation";
 | 
						|
            case self::VALIDATED:
 | 
						|
                return "Inscription validée";
 | 
						|
            default:
 | 
						|
                return "Inscription non terminée";
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public static function getName($status) {
 | 
						|
		switch ($status) {
 | 
						|
			case self::WAITING:
 | 
						|
				return "WAITING";
 | 
						|
			case self::VALIDATED:
 | 
						|
				return "VALIDATED";
 | 
						|
			default:
 | 
						|
				return "NOT_READY";
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
    public static function fromName($name) {
 | 
						|
        switch ($name) {
 | 
						|
            case "WAITING":
 | 
						|
                return self::WAITING;
 | 
						|
            case "VALIDATED":
 | 
						|
                return self::VALIDATED;
 | 
						|
            default:
 | 
						|
                return self::NOT_READY;
 | 
						|
        }
 | 
						|
    }
 | 
						|
} |