You are here

private function Creators::loadMD5 in Bibliography Module 7

Same name and namespace in other branches
  1. 6.2 modules/bibtexParse/PARSECREATORS.php \Creators::loadMD5()
  2. 6 bibtexParse/PARSECREATORS.php \Creators::loadMD5()
  3. 7.3 plugins/biblio_style/bibtex/PARSECREATORS.php \Creators::loadMD5()
  4. 7.2 modules/bibtexParse/PARSECREATORS.php \Creators::loadMD5()
1 call to Creators::loadMD5()
Creators::saveCreators in modules/bibtexParse/PARSECREATORS.php

File

modules/bibtexParse/PARSECREATORS.php, line 73
Classes Creators and PARSECREATORS.

Class

Creators

Code

private function loadMD5() {
  $result = db_query('SELECT md5,cid  FROM {biblio_contributor_data} ');
  while ($row = db_fetch_array($result)) {
    $this->md5[$row['cid']] = $row['md5'];
  }
}