Subversion Repositories Sites.obs-saisons.fr

Rev

Rev 172 | Rev 262 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 172 Rev 189
Line 20... Line 20...
20
    	    	
20
    	    	
21
        if ($type == '*' || is_numeric($type)) {
21
        if ($type == '*' || is_numeric($type)) {
22
            $info = $this->getElementParDefaut($param);
22
            $info = $this->getElementParDefaut($param);
23
        } else {
23
        } else {
24
            $methode = self::PREFIXE.$type;
-
 
25
            
-
 
26
            echo $methode;
24
            $methode = self::PREFIXE.$type;
27
            if (method_exists($this, $methode)) {
25
            if (method_exists($this, $methode)) {
28
                array_shift($param);
26
                array_shift($param);
29
                $info = $this->$methode($param);
27
                $info = $this->$methode($param);
30
            } else {
28
            } else {
Line 50... Line 48...
50
				continue;
48
				continue;
51
			}
49
			}
Line 52... Line 50...
52
			
50
			
53
			if(in_array($fichier_ou_dossier->getBasename(), $dossiers_a_exclure)) {
51
			if(in_array($fichier_ou_dossier->getBasename(), $dossiers_a_exclure)) {
54
				continue;
52
				continue;
-
 
53
			}
-
 
54
 
-
 
55
			$extension = pathinfo($fichier_ou_dossier->getPathname(),PATHINFO_EXTENSION);
-
 
56
			if($extension == 'txt') {
-
 
57
				continue;
Line 55... Line 58...
55
			}	
58
			}
Line 56... Line 59...
56
		    	    	
59