Last active
November 28, 2016 08:12
-
-
Save alexander-schranz/8cb3543b1b7748deec3a8b7d3f592aad to your computer and use it in GitHub Desktop.
SuluMediaImport.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $uploadedFile = new UploadedFile( | |
| $filePath, $name, $mimeType, $size | |
| ); | |
| $media = $this->getContainer()->get('sulu_media.media_manager')->save( | |
| $uploadedFile, | |
| [ | |
| 'locale' => $locale, | |
| 'title' => $title, | |
| 'collection' => $collectionId, | |
| ], | |
| $userId | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment