Lines Matching refs:priority
141 $priority = intval($attrs['priority']);
142 if (!array_key_exists($priority, $uris)) {
143 $uris[$priority] = [];
146 $uris[$priority][] = $uri_string;
343 * @param int $priority
346 function _addService($priority, $service) argument
348 $priority = intval($priority);
350 if (!array_key_exists($priority, $this->serviceList)) {
351 $this->serviceList[$priority] = [];
354 $this->serviceList[$priority][] = $service;
374 $priority = $s->getPriority();
376 if ($priority === null) {
377 $priority = SERVICES_YADIS_MAX_PRIORITY;
380 $this->_addService($priority, $s);