1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
<?php
/**
* WordPress media file property as a gallery.
*/
class Papi_Property_Gallery extends Papi_Property_Image {
/**
* The convert type.
*
* @var string
*/
public $convert_type = 'array';
/**
* The default value.
*
* @var array
*/
public $default_value = [];
/**
* Get default settings.
*
* @return array
*/
public function get_default_settings() {
return [
'multiple' => true
];
}
}