clinicaltrial.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. /**
  3. * tools/anonymizer/clinicaltrial.php file
  4. *
  5. * @package Nanodicom
  6. * @category Tools
  7. * @author Nano Documet <nanodocumet@gmail.com>
  8. * @version 1.3.1
  9. * @copyright (c) 2010-2011
  10. * @license http://www.opensource.org/licenses/mit-license.php MIT-license
  11. */
  12. /**
  13. * Dicom_Anonymizer_Clinicaltrial class.
  14. *
  15. * Extends Dicom_Anonymizer. Use this to extend specific tools. The idea is to have it
  16. * specific to certain functionality. In this case, this tool it is an Anonymizer
  17. * specific for Clinical Trials.
  18. * @package Nanodicom
  19. * @category Tools
  20. * @author Nano Documet <nanodocumet@gmail.com>
  21. * @version 1.3.1
  22. * @copyright (c) 2010-2011
  23. * @license http://www.opensource.org/licenses/mit-license.php MIT-license
  24. */
  25. class Dicom_Anonymizer_Clinicaltrial extends Dicom_Anonymizer {
  26. /**
  27. * Anonymizes the dataset
  28. *
  29. * @param mixed NULL or an array to overwrite defaults
  30. * @param integer the mode
  31. * @return string the anonymized dataset
  32. */
  33. public function anonymize($tags = NULL, $mode = self::RETURN_BLOB)
  34. {
  35. //Overload the function here if you want
  36. }
  37. } // End Dicom_Anonymizer_Clinicaltrial