/
var
/
www
/
barefootlaw.org
/
wp-content
/
plugins
/
pods
/
src
/
Pods
/
Whatsit
/
Storage
/
Upload File
HOME
<?php namespace Pods\Whatsit\Storage; /** * File class. * * @since 2.9.0 */ class File extends Collection { /** * {@inheritdoc} */ protected static $type = 'file'; /** * @var array */ protected static $compatible_types = [ 'file' => 'file', ]; /** * {@inheritdoc} */ public function get_label() { return __( 'File', 'pods' ); } }