芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/acancehyucatan.gob.mx/libraries/vendor/joomla/event/src/ListenersPriorityQueue.php
listeners[$priority][] = $callback; return $this; } /** * Remove a listener from the queue. * * @param callable $callback A callable function acting as an event listener. * * @return $this * * @since 1.0 */ public function remove(callable $callback): self { foreach ($this->listeners as $priority => $listeners) { if (($key = array_search($callback, $listeners, true)) !== false) { unset($this->listeners[$priority][$key]); } } return $this; } /** * Tell if the listener exists in the queue. * * @param callable $callback A callable function acting as an event listener. * * @return boolean True if it exists, false otherwise. * * @since 1.0 */ public function has(callable $callback): bool { foreach ($this->listeners as $priority => $listeners) { if (($key = array_search($callback, $listeners, true)) !== false) { return true; } } return false; } /** * Get the priority of the given listener. * * @param callable $callback A callable function acting as an event listener. * @param mixed $default The default value to return if the listener doesn't exist. * * @return mixed The listener priority if it exists or the specified default value * * @since 1.0 */ public function getPriority(callable $callback, $default = null) { foreach ($this->listeners as $priority => $listeners) { if (($key = array_search($callback, $listeners, true)) !== false) { return $priority; } } return $default; } /** * Get all listeners contained in this queue, sorted according to their priority. * * @return callable[] An array of listeners. * * @since 1.0 */ public function getAll(): array { if (empty($this->listeners)) { return []; } krsort($this->listeners); return \call_user_func_array('array_merge', $this->listeners); } /** * Get the priority queue. * * @return \ArrayIterator * * @since 1.0 */ public function getIterator() { return new \ArrayIterator($this->getAll()); } /** * Count the number of listeners in the queue. * * @return integer The number of listeners in the queue. * * @since 1.0 */ public function count() { $count = 0; foreach ($this->listeners as $priority) { $count += \count($priority); } return $count; } }