Exemple #1
0
 /**
  * @param string $path
  * @return string A MD5 hash
  */
 public function getChecksum($path)
 {
     if ($this->_adapter instanceof CM_File_Filesystem_Adapter_ChecksumCalculatorInterface) {
         return $this->_adapter->getChecksum($path);
     } else {
         return md5($this->read($path));
     }
 }