db->query($s); $r = $q->fetchArray(SQLITE3_ASSOC); if ($r){ $this->id = $r["id"]; $this->name = $r["name"]; $this->description = $r["description"]; $this->farmable_source = $r["farmable_source"]; } } /** * Gets the path to the source image. The image must be in the * img/source/ directory, and it's name must be the source id, * padded with '0' to 4 digits, and the extension must be '.png'. * * @return Path to the image, or a path to a fixed unknown image if it * doesn't exist. */ public function get_image(){ global $base_dir; global $path; if (file_exists($base_dir . "img/source/" . str_pad($this->id, 4, '0', STR_PAD_LEFT) . ".png")){ return $path["img"]["source"] . str_pad($this->id, 4, '0', STR_PAD_LEFT) . ".png"; } else{ return $path["img"]["root"] . "unknown.png"; } } } ?>