Lines Matching defs:pdbid
25 function DownloadImage($pdbid,$path){
26 $pdbid = $this->PDBformat($pdbid);
27 if ($pdbid===false) return false;
29 $downloadURL = sprintf($this->ImgURL,$pdbid);
37 function ExplorerURL($pdbid){
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"){
46 $pdbid = $this->PDBformat($pdbid);
47 if ($pdbid===false) return false;
49 return sprintf($this->LinkFormat,$pdbid,$class,strtoupper($pdbid));
52 function PDBformat($pdbid){
53 $pdbid=strtolower(urlencode($pdbid));
54 if (strlen($pdbid)!=4) return false;
55 return $pdbid;