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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
<?php
namespace SIW\WooCommerce\Admin;
use SIW\Async\Process_Stockphoto_Upload;
class Stockphoto_Page {
protected $process_stockphoto_upload;
protected $upload_subdir = 'groepsprojecten/stockfotos';
protected $temp_dir = WP_CONTENT_DIR . '/uploads/temp/';
public static function init() {
$self = new self();
$self->process_stockphoto_upload = new Process_Stockphoto_Upload();
add_filter( 'mb_settings_pages', [ $self, 'add_page'] ) ;
add_filter( 'rwmb_meta_boxes', [ $self, 'add_metabox'] );
add_filter( 'rwmb_stockphotos_after_save_field', [ $self, 'process_uploads'], 10 ,5 );
}
public function add_page( $pages ) {
$pages[] = [
'parent' => 'edit.php?post_type=product',
'id' => 'siw-stockphotos',
'option_name' => 'siw_stockphoto',
'capability' => 'edit_products',
'menu_title' => __( "Stockfoto's", 'siw' ),
'message' => __( "Stockfoto's opgeslagen", 'siw' ),
'columns' => 1,
];
return $pages;
}
public function add_metabox( $metaboxes ) {
$metaboxes[] = [
'id' => 'stockphotos',
'title' => __( "Stockfoto's toevoegen", 'siw' ),
'settings_pages' => 'siw-stockphotos',
'fields' => [
[
'id' => 'stockphotos',
'type' => 'group',
'clone' => true,
'save_field' => false,
'add_button' => __( 'Stockfoto toevoegen', 'siw' ),
'fields' => [
[
'id' => 'file',
'type' => 'file',
'name' => __( 'Afbeelding', 'siw' ),
'required' => true,
'max_file_uploads' => 1,
'upload_dir' => $this->temp_dir,
],
[
'id' => 'continent',
'type' => 'select_advanced',
'name' => __( 'Continent', 'siw' ),
'placeholder' => __( 'Selecteer een continent', 'siw '),
'options' => \siw_get_continents( 'array' ),
],
[
'id' => 'country',
'type' => 'select_advanced',
'name' => __( 'Land', 'siw' ),
'placeholder' => __( 'Selecteer een land', 'siw '),
'options' => \siw_get_countries( 'all', 'slug', 'array' ),
],
[
'id' => 'work_type',
'type' => 'select_advanced',
'name' => __( 'Soort werk', 'siw' ),
'placeholder' => __( 'Selecteer soort(en) werk', 'siw '),
'options' => \siw_get_work_types( 'all', 'slug', 'array' ),
'multiple' => true,
],
],
],
],
];
return $metaboxes;
}
public function process_uploads( $null, array $field, array $new, $old, string $object_id ) {
foreach ( $new as $group ) {
$continent = $group['continent'];
$country = $group['country'];
$work_type = $group['work_type'];
foreach ( $group['file'] as $url ) {
$file = wp_normalize_path( trailingslashit( $this->temp_dir ) . basename( $url ) );
$data = [
'file' => $file,
'continent' => $continent,
'country' => $country,
'work_type' => $work_type,
];
$this->process_stockphoto_upload->data( $data );
$this->process_stockphoto_upload->dispatch();
}
}
}
}