Source: jDrupal/src/file.js

  1. /**
  2. * Loads a file, given a file id.
  3. * @param {Number} fid
  4. * @param {Object} options
  5. */
  6. function file_load(fid, options) {
  7. try {
  8. entity_load('file', fid, options);
  9. }
  10. catch (error) { console.log('file_load - ' + error); }
  11. }
  12. /**
  13. * Saves a file.
  14. * @param {Object} file
  15. * @param {Object} options
  16. */
  17. function file_save(file, options) {
  18. try {
  19. entity_save('file', null, file, options);
  20. }
  21. catch (error) { console.log('file_save - ' + error); }
  22. }