1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /**
- * tools/anonymizer/clinicaltrial.php file
- *
- * @package Nanodicom
- * @category Tools
- * @author Nano Documet <nanodocumet@gmail.com>
- * @version 1.3.1
- * @copyright (c) 2010-2011
- * @license http://www.opensource.org/licenses/mit-license.php MIT-license
- */
- /**
- * Dicom_Anonymizer_Clinicaltrial class.
- *
- * Extends Dicom_Anonymizer. Use this to extend specific tools. The idea is to have it
- * specific to certain functionality. In this case, this tool it is an Anonymizer
- * specific for Clinical Trials.
- * @package Nanodicom
- * @category Tools
- * @author Nano Documet <nanodocumet@gmail.com>
- * @version 1.3.1
- * @copyright (c) 2010-2011
- * @license http://www.opensource.org/licenses/mit-license.php MIT-license
- */
- class Dicom_Anonymizer_Clinicaltrial extends Dicom_Anonymizer {
- /**
- * Anonymizes the dataset
- *
- * @param mixed NULL or an array to overwrite defaults
- * @param integer the mode
- * @return string the anonymized dataset
- */
- public function anonymize($tags = NULL, $mode = self::RETURN_BLOB)
- {
- //Overload the function here if you want
- }
-
- } // End Dicom_Anonymizer_Clinicaltrial
|