Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 333 Bytes

creating-documents.md

File metadata and controls

18 lines (13 loc) · 333 Bytes

Creating documents

Create by relative path:

$dms = DMS::getDMSInstance();
$doc = $dms->storeDocument('assets/myfile.pdf');

Create from an existing File record:

$dms = DMS::getDMSInstance();
$file = File::get()->byID(99);
$doc = $dms->storeDocument($file);

Note: Both operations copy the existing file.