Lines Matching refs:priority
141 $priority = intval($attrs['priority']);
142 if (!array_key_exists($priority, $uris)) {
143 $uris[$priority] = array();
146 $uris[$priority][] = $uri_string;
331 function _addService($priority, $service) argument
333 $priority = intval($priority);
335 if (!array_key_exists($priority, $this->serviceList)) {
336 $this->serviceList[$priority] = array();
339 $this->serviceList[$priority][] = $service;
359 $priority = $s->getPriority();
361 if ($priority === null) {
362 $priority = SERVICES_YADIS_MAX_PRIORITY;
365 $this->_addService($priority, $s);