1 2 3 4 5 6 7 8 |
$insert_row = array(); $insert_row['album'] = -1; // Die Album ID. albumId als key ist falsch obwohl so dokumentiert. $insert_row['userId'] = 0; $insert_row['name'] = 'artikel'; $insert_row['file'] = 'path/to/importfile/thefilename.jpg'; // Das Bild wird kopiert und anschließend gelöscht!!! $insert_row['description'] = 'description to the image'; // post/insert media $res_media = $this->post('media', $insert_row); |