Storage
4 months ago
Block.php
4 months ago
Block_Collection.php
4 months ago
Block_Field.php
4 months ago
Field.php
4 months ago
Group.php
4 months ago
Legacy_Object.php
4 months ago
Object_Field.php
4 months ago
Page.php
4 months ago
Pod.php
4 months ago
Storage.php
4 months ago
Store.php
4 months ago
Template.php
4 months ago
Object_Field.php
23 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Pods\Whatsit; |
| 4 | |
| 5 | // Don't load directly. |
| 6 | if ( ! defined( 'ABSPATH' ) ) { |
| 7 | die( '-1' ); |
| 8 | } |
| 9 | |
| 10 | /** |
| 11 | * Object_Field class. |
| 12 | * |
| 13 | * @since 2.8.0 |
| 14 | */ |
| 15 | class Object_Field extends Field { |
| 16 | |
| 17 | /** |
| 18 | * {@inheritdoc} |
| 19 | */ |
| 20 | protected static $type = 'object-field'; |
| 21 | |
| 22 | } |
| 23 |