interfaces
2 years ago
traits
2 years ago
base-notice.php
2 years ago
notices-repository.php
2 years ago
notices-repository.php
46 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Components\Admin\Notices; |
| 5 | |
| 6 | use Jet_Form_Builder\Classes\Arrayable\Array_Tools; |
| 7 | use Jet_Form_Builder\Classes\Arrayable\Arrayable; |
| 8 | use JFB_Components\Repository\Repository_Pattern_Trait; |
| 9 | use JFB_Components\Admin\Notices\Interfaces; |
| 10 | |
| 11 | // If this file is called directly, abort. |
| 12 | if ( ! defined( 'WPINC' ) ) { |
| 13 | die; |
| 14 | } |
| 15 | |
| 16 | class Notices_Repository implements Interfaces\Admin_Notices_It, Arrayable { |
| 17 | |
| 18 | use Repository_Pattern_Trait; |
| 19 | |
| 20 | public function rep_instances(): array { |
| 21 | return array(); |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * @return Base_Notice[] |
| 26 | */ |
| 27 | public function get_notices(): array { |
| 28 | return $this->rep_get_items(); |
| 29 | } |
| 30 | |
| 31 | public function to_array(): array { |
| 32 | return Array_Tools::to_array( $this->get_notices() ); |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * @param Base_Notice $notice |
| 37 | * |
| 38 | * @return Notices_Repository |
| 39 | */ |
| 40 | public function register_notice( Base_Notice $notice ): Interfaces\Admin_Notices_It { |
| 41 | $this->rep_install_item_soft( $notice ); |
| 42 | |
| 43 | return $this; |
| 44 | } |
| 45 | } |
| 46 |