Ejemplo n.º 1
0
 protected function parseISSN()
 {
     parent::parseISSN();
     // gale puts issn in 773b
     if (strstr($this->source, 'GALE')) {
         $strGaleIssn = (string) $this->marc->datafield("773")->subfield("b");
         if ($strGaleIssn != null) {
             array_push($this->issns, $strGaleIssn);
         }
     }
 }