Added TMDB as a identifier.

This commit is contained in:
2023-08-08 15:07:19 -05:00
parent b5b5241c6f
commit 8d2c5ef9ae
12 changed files with 4 additions and 1 deletions

BIN
images/29.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 224 KiB

BIN
images/30.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 325 KiB

BIN
images/31.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 290 KiB

BIN
images/32.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 276 KiB

BIN
images/33.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 780 KiB

BIN
images/34.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 422 KiB

BIN
images/35.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 541 KiB

BIN
images/36.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 296 KiB

BIN
images/37.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 253 KiB

BIN
images/38.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

View File

@ -265,7 +265,10 @@ while ($row = $series->fetchArray()) {
$identifierURL = 'https://www.librarything.com/isbn/'; $identifierURL = 'https://www.librarything.com/isbn/';
} elseif ($row_id_type == 'oclc') { } elseif ($row_id_type == 'oclc') {
$identifierURL = 'https://worldcat.org/title/'; $identifierURL = 'https://worldcat.org/title/';
} else { $identifierURL = '#'; } elseif ($row_id_type == 'tmdb') {
$identifierURL = 'https://www.themoviedb.org/movie/';
} else {
$identifierURL = '#';
} }
echo '<span style="margin-left: 10px;">'.$row_id_type.': <a href="'.$identifierURL.$row_id_val.'" target="_blank">'.$row_id_val.'</a></span><br />'; echo '<span style="margin-left: 10px;">'.$row_id_type.': <a href="'.$identifierURL.$row_id_val.'" target="_blank">'.$row_id_val.'</a></span><br />';
} }

Binary file not shown.