Lines Matching refs:pdbid
25 function DownloadImage($pdbid,$path){ argument
26 $pdbid = $this->PDBformat($pdbid);
27 if ($pdbid===false) return false;
29 $downloadURL = sprintf($this->ImgURL,$pdbid);
37 function ExplorerURL($pdbid){ argument
38 $pdbid = $this->PDBformat($pdbid);
39 if ($pdbid===false) return false;
40 return sprintf($this->LinkURL,$pdbid);
45 function ExplorerLink($pdbid,$class="pdb_plugin_acc"){ argument
46 $pdbid = $this->PDBformat($pdbid);
47 if ($pdbid===false) return false;
49 return sprintf($this->LinkFormat,$pdbid,$class,strtoupper($pdbid));
52 function PDBformat($pdbid){ argument
53 $pdbid=strtolower(urlencode($pdbid));
54 if (strlen($pdbid)!=4) return false;
55 return $pdbid;