Admin
2 years ago
Ajax
2 years ago
ApplyFilter
2 years ago
Asset
2 years ago
Capabilities
2 years ago
Check
2 years ago
Column
2 years ago
ColumnRepository
2 years ago
ColumnSize
2 years ago
Controller
2 years ago
Deprecated
2 years ago
Entity
2 years ago
Exception
2 years ago
Form
2 years ago
Helper
2 years ago
Integration
2 years ago
ListScreen
2 years ago
ListScreenFactory
2 years ago
ListScreenRepository
2 years ago
ListTable
2 years ago
Message
2 years ago
Meta
2 years ago
Nonce
2 years ago
Plugin
2 years ago
Preferences
2 years ago
Promo
2 years ago
Relation
2 years ago
Request
2 years ago
RequestHandler
2 years ago
Response
2 years ago
Sanitize
2 years ago
Screen
2 years ago
Service
2 years ago
Settings
2 years ago
Storage
2 years ago
Table
2 years ago
ThirdParty
2 years ago
Transient
2 years ago
Type
2 years ago
View
2 years ago
AdminColumns.php
2 years ago
ArrayIterator.php
2 years ago
Capabilities.php
2 years ago
Collection.php
2 years ago
Column.php
2 years ago
ColumnGroups.php
2 years ago
ColumnRepository.php
2 years ago
Config.php
2 years ago
Container.php
2 years ago
DefaultColumnsRepository.php
2 years ago
Dependencies.php
2 years ago
Expirable.php
2 years ago
Groups.php
2 years ago
Helper.php
2 years ago
Integration.php
2 years ago
IntegrationRepository.php
2 years ago
Integrations.php
2 years ago
Iterator.php
2 years ago
ListScreen.php
2 years ago
ListScreenCollection.php
2 years ago
ListScreenFactory.php
2 years ago
ListScreenGroupsFactory.php
2 years ago
ListScreenPost.php
2 years ago
ListScreenRepository.php
2 years ago
ListScreenRepositoryWritable.php
2 years ago
ListTable.php
2 years ago
ListTableFactory.php
2 years ago
Message.php
2 years ago
MetaType.php
2 years ago
Middleware.php
2 years ago
OpCacheInvalidateTrait.php
2 years ago
PluginActionLinks.php
2 years ago
PluginActionUpgrade.php
2 years ago
PluginUpdate.php
2 years ago
PostType.php
2 years ago
PostTypeRepository.php
2 years ago
Preferences.php
2 years ago
Promo.php
2 years ago
PromoCollection.php
2 years ago
Registerable.php
2 years ago
Relation.php
2 years ago
Renderable.php
2 years ago
Request.php
2 years ago
RequestAjaxHandler.php
2 years ago
RequestAjaxHandlers.php
2 years ago
RequestAjaxParser.php
2 years ago
Sanitize.php
2 years ago
Screen.php
2 years ago
ScreenController.php
2 years ago
Services.php
2 years ago
Stringable.php
2 years ago
Transient.php
2 years ago
TypedArrayIterator.php
2 years ago
View.php
2 years ago
ViewCollection.php
2 years ago
WpListTableFactory.php
2 years ago
ArrayIterator.php
104 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AC; |
| 4 | |
| 5 | use Iterator; |
| 6 | |
| 7 | class ArrayIterator implements Iterator |
| 8 | { |
| 9 | |
| 10 | /** |
| 11 | * @var array |
| 12 | */ |
| 13 | protected $array; |
| 14 | |
| 15 | public function __construct(array $array = []) |
| 16 | { |
| 17 | $this->array = $array; |
| 18 | } |
| 19 | |
| 20 | #[\ReturnTypeWillChange] |
| 21 | public function current() |
| 22 | { |
| 23 | return current($this->array); |
| 24 | } |
| 25 | |
| 26 | #[\ReturnTypeWillChange] |
| 27 | public function next() |
| 28 | { |
| 29 | return next($this->array); |
| 30 | } |
| 31 | |
| 32 | #[\ReturnTypeWillChange] |
| 33 | public function key() |
| 34 | { |
| 35 | return key($this->array); |
| 36 | } |
| 37 | |
| 38 | #[\ReturnTypeWillChange] |
| 39 | public function valid() |
| 40 | { |
| 41 | return $this->key() !== null; |
| 42 | } |
| 43 | |
| 44 | #[\ReturnTypeWillChange] |
| 45 | public function rewind() |
| 46 | { |
| 47 | return reset($this->array); |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * @param string $offset |
| 52 | * |
| 53 | * @return false|mixed |
| 54 | */ |
| 55 | public function get_offset($offset) |
| 56 | { |
| 57 | if ( ! $this->has_offset($offset)) { |
| 58 | return false; |
| 59 | } |
| 60 | |
| 61 | return $this->array[$offset]; |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * @param string $offset |
| 66 | * |
| 67 | * @return bool |
| 68 | */ |
| 69 | public function has_offset($offset) |
| 70 | { |
| 71 | return array_key_exists($offset, $this->array); |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * @param mixed $value |
| 76 | * |
| 77 | * @return bool |
| 78 | */ |
| 79 | public function search($value) |
| 80 | { |
| 81 | return in_array($value, $this->array, true); |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * @return int |
| 86 | */ |
| 87 | public function count() |
| 88 | { |
| 89 | return count($this->array); |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * @return array |
| 94 | */ |
| 95 | public function get_copy() |
| 96 | { |
| 97 | $copy = $this->array; |
| 98 | |
| 99 | reset($copy); |
| 100 | |
| 101 | return $copy; |
| 102 | } |
| 103 | |
| 104 | } |