PluginProbe
Filter Everything — WordPress & WooCommerce Filters / 1.9.7
Filter Everything — WordPress & WooCommerce Filters v1.9.7
1.9.7 1.9.6 1.9.5 1.9.4 1.9.3 1.9.2.2 1.9.2.1 trunk 1.2.1 1.2.3 1.2.4 1.2.5 1.3.0 1.3.1 1.3.2 1.4.1 1.4.4 1.4.5 1.4.8 1.4.9 1.5.0 1.5.1 1.6.0 1.6.1 1.6.2 All 52 releases
← All changes | src/Entities/DefaultEntity.php +8 -0 1.9.2.11.9.7 View file →
@@ -8,8 +8,16 @@
8 8
9 9 class DefaultEntity implements Entity
10 10 {
11 11 public $items = [];
12 + /**
13 + * Declared explicitly: assigned from the outside in
14 + * EntityManager::prepareEntitiesToDisplay(); dynamic properties are
15 + * deprecated since PHP 8.2.
16 + */
17 + public $items_sort = [];
18 +
19 + public $filter = [];
12 20
13 21 public $entityName = '';
14 22
15 23 public function __construct( $postMetaName ){