case 7:
if ($compiler->book->parametres->customLinkClass == 'WescoLink') {
return new wescoLink($id, $init, $compiler);
+ } else if ($compiler->book->parametres->customLinkClass == 'HaguenauManifLink') {
+ return new haguenauManifLink($id, $init, $compiler);
}
case 8:
case 9:
}
+class haguenauManifLink extends internalLink {
+
+ public function getPage() {
+ $fiches = array(
+ "1" => 7, "2" => 8, "3" => 14, "4" => 16, "5" => 17, "6" => 18, "7" => 19, "8" => 20, "9" => 22, "10" => 23, "11" => 24, "12" => 27
+ , "13" => 29, "14" => 32, "15" => 34, "16" => 37, "17" => 38, "18" => 41, "19" => 43,
+ "20" => 45, "21" => 46, "22" => 52, "23" => 53, "24" => 54, "25" => 56, "26" => 59, "27" => 60
+ );
+ return $fiches[$this->to];
+ }
+
+}
+
?>