Skip to content

Instantly share code, notes, and snippets.

@barrykooij
Created February 15, 2017 13:48
Show Gist options
  • Save barrykooij/3751cc3d27ab30e264b0493558e088d5 to your computer and use it in GitHub Desktop.
Save barrykooij/3751cc3d27ab30e264b0493558e088d5 to your computer and use it in GitHub Desktop.
<?php
function dlm_custom_update_version_filesize( $version_id, $file_path ) {
$file_manager = new DLM_File_Manager();
$filesize = $file_manager->get_file_size( $file_path );
$hashes = $file_manager->get_file_hashes( $file_path );
update_post_meta( $version_id, '_filesize', $filesize );
update_post_meta( $version_id, '_md5', $hashes['md5'] );
update_post_meta( $version_id, '_sha1', $hashes['sha1'] );
update_post_meta( $version_id, '_crc32', $hashes['crc32'] );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment