Quellcode durchsuchen

Documented parse_identifier()

Brendan Abolivier vor 8 Jahren
Ursprung
Commit
a12b342091
1 geänderte Dateien mit 7 neuen und 0 gelöschten Zeilen
  1. 7
    0
      auth.php

+ 7
- 0
auth.php Datei anzeigen

131
 		}
131
 		}
132
 	}
132
 	}
133
 
133
 
134
+
135
+	/*
136
+	* Parses the macaroon identifier based on the user's config
137
+	*
138
+	* @param array $identifier The macaroon identifier split based on the separator
139
+	* @return array A map linking a field with an user value
140
+	*/
134
 	function parse_identifier($identifier) {
141
 	function parse_identifier($identifier) {
135
 		$placeholders = explode(";", $this->config->identifier_format);
142
 		$placeholders = explode(";", $this->config->identifier_format);
136
 
143