Created
February 15, 2017 13:48
-
-
Save barrykooij/3751cc3d27ab30e264b0493558e088d5 to your computer and use it in GitHub Desktop.
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 | |
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