Admin
6 months ago
Ajax
6 months ago
ApplyFilter
6 months ago
Asset
6 months ago
Capabilities
6 months ago
Check
6 months ago
Column
6 months ago
ColumnRepository
6 months ago
ColumnSize
6 months ago
Controller
6 months ago
Deprecated
6 months ago
Entity
6 months ago
Exception
6 months ago
Form
6 months ago
Helper
6 months ago
Integration
6 months ago
ListScreen
6 months ago
ListScreenFactory
6 months ago
ListScreenRepository
6 months ago
ListTable
6 months ago
Message
6 months ago
Meta
6 months ago
Nonce
6 months ago
Plugin
6 months ago
Preferences
6 months ago
Promo
6 months ago
Relation
6 months ago
Request
6 months ago
RequestHandler
6 months ago
Response
6 months ago
Sanitize
6 months ago
Screen
6 months ago
Service
6 months ago
Settings
6 months ago
Storage
6 months ago
Table
6 months ago
ThirdParty
6 months ago
Transient
6 months ago
Type
6 months ago
View
6 months ago
AdminColumns.php
6 months ago
ArrayIterator.php
6 months ago
Capabilities.php
6 months ago
Collection.php
6 months ago
Column.php
6 months ago
ColumnGroups.php
6 months ago
ColumnRepository.php
6 months ago
Config.php
6 months ago
Container.php
6 months ago
DefaultColumnsRepository.php
6 months ago
Dependencies.php
6 months ago
Expirable.php
6 months ago
Groups.php
6 months ago
Helper.php
6 months ago
Integration.php
6 months ago
IntegrationRepository.php
6 months ago
Integrations.php
6 months ago
Iterator.php
6 months ago
ListScreen.php
6 months ago
ListScreenCollection.php
6 months ago
ListScreenFactory.php
6 months ago
ListScreenGroupsFactory.php
6 months ago
ListScreenPost.php
6 months ago
ListScreenRepository.php
6 months ago
ListScreenRepositoryWritable.php
6 months ago
ListTable.php
6 months ago
ListTableFactory.php
6 months ago
Message.php
6 months ago
MetaType.php
6 months ago
Middleware.php
6 months ago
OpCacheInvalidateTrait.php
6 months ago
PluginActionLinks.php
6 months ago
PluginActionUpgrade.php
6 months ago
PluginUpdate.php
6 months ago
PostType.php
6 months ago
PostTypeRepository.php
6 months ago
Preferences.php
6 months ago
Promo.php
6 months ago
PromoCollection.php
6 months ago
Registerable.php
6 months ago
Relation.php
6 months ago
Renderable.php
6 months ago
Request.php
6 months ago
RequestAjaxHandler.php
6 months ago
RequestAjaxHandlers.php
6 months ago
RequestAjaxParser.php
6 months ago
Sanitize.php
6 months ago
Screen.php
6 months ago
ScreenController.php
6 months ago
Services.php
6 months ago
Stringable.php
6 months ago
Transient.php
6 months ago
TypedArrayIterator.php
6 months ago
View.php
6 months ago
ViewCollection.php
6 months ago
WpListTableFactory.php
6 months 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 | } |