Skip to content

Instantly share code, notes, and snippets.

@GreatPotato
Last active August 29, 2015 13:57
Show Gist options
  • Select an option

  • Save GreatPotato/9420178 to your computer and use it in GitHub Desktop.

Select an option

Save GreatPotato/9420178 to your computer and use it in GitHub Desktop.
Add a $_FILES to Db_File
<?php
$file = Db_File::create();
$file->is_public = true;
$file->fromPost($_FILES['file']);
$file->master_object_class = 'Shop_OrderItem';
$file->save();
$item->files->add($file);
$item->save();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment