mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 02:46:30 +00:00
109 lines
3.7 KiB
PHP
109 lines
3.7 KiB
PHP
<?
|
|
/************************************************************************
|
|
||------------|| Edit artist wiki page ||------------------------------||
|
|
|
|
This page is the page that is displayed when someone feels like editing
|
|
an artist's wiki page.
|
|
|
|
It is called when $_GET['action'] == 'edit'. $_GET['artistid'] is the
|
|
ID of the artist, and must be set.
|
|
|
|
************************************************************************/
|
|
|
|
$ArtistID = $_GET['artistid'];
|
|
if(!is_number($ArtistID)) { error(0); }
|
|
|
|
// Get the artist name and the body of the last revision
|
|
$DB->query("SELECT
|
|
Name,
|
|
Image,
|
|
Body
|
|
FROM artists_group AS a
|
|
LEFT JOIN wiki_artists ON wiki_artists.RevisionID=a.RevisionID
|
|
WHERE a.ArtistID='$ArtistID'");
|
|
|
|
if($DB->record_count() < 1) {
|
|
error("Cannot find the artist with the ID ".$ArtistID.': See the <a href="log.php?search=Artist+'.$ArtistID.'">log</a>.');
|
|
}
|
|
|
|
list($Name, $Image, $Body) = $DB->next_record(MYSQLI_NUM, true);
|
|
|
|
// Start printing form
|
|
show_header('Edit artist');
|
|
?>
|
|
<div class="thin">
|
|
<h2>Edit <a href="artist.php?id=<?=$ArtistID?>"><?=$Name?></a></h2>
|
|
<div class="box pad">
|
|
<form action="artist.php" method="post">
|
|
<input type="hidden" name="action" value="edit" />
|
|
<input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
|
|
<input type="hidden" name="artistid" value="<?=$ArtistID?>" />
|
|
<div>
|
|
<h3>Image</h3>
|
|
<input type="text" name="image" size="92" value="<?=$Image?>" /><br />
|
|
<h3>Artist info</h3>
|
|
<textarea name="body" cols="91" rows="20"><?=$Body?></textarea> <br />
|
|
<h3>Edit summary</h3>
|
|
<input type="text" name="summary" size="92" /><br />
|
|
<div style="text-align: center;">
|
|
<input type="submit" value="Submit" />
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<? if(check_perms('torrents_edit')) { ?>
|
|
<h2>Rename</h2>
|
|
<div class="box pad">
|
|
<form action="artist.php" method="post">
|
|
<input type="hidden" name="action" value="rename" />
|
|
<input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
|
|
<input type="hidden" name="artistid" value="<?=$ArtistID?>" />
|
|
<div>
|
|
<input type="text" name="name" size="92" value="<?=$Name?>" />
|
|
<div style="text-align: center;">
|
|
<input type="submit" value="Rename" />
|
|
</div>
|
|
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
|
|
<h2>Aliases</h2>
|
|
<div class="box pad">
|
|
<ul>
|
|
|
|
<?
|
|
$DB->query("SELECT AliasID, Name, UserID, Redirect FROM artists_alias WHERE ArtistID='$ArtistID'");
|
|
while(list($AliasID, $AliasName, $User, $Redirect) = $DB->next_record(MYSQLI_NUM, true)) {
|
|
if($AliasName == $Name) { $DefaultRedirectID = $AliasID; }
|
|
?>
|
|
<li><?=$AliasID?>. <?=$AliasName?>
|
|
<? if($User) { ?> <a href="user.php?id=<?=$User?>">User</a>. <?}
|
|
if($Redirect) { ?> (writes redirect to <?=$Redirect?>)<? } ?>
|
|
<a href="artist.php?action=delete_alias&aliasid=<?=$AliasID?>&auth=<?=$LoggedUser['AuthKey']?>">[X]</a>
|
|
</li>
|
|
<? }
|
|
?>
|
|
</ul>
|
|
<form action="artist.php" method="post">
|
|
<div>
|
|
<input type="hidden" name="action" value="add_alias" />
|
|
<input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
|
|
<input type="hidden" name="artistid" value="<?=$ArtistID?>" />
|
|
<h3>Name:</h3>
|
|
<input type="text" name="name" size="40" value="<?=$Name?>" /><br />
|
|
<h3>Writes redirect to (Alias ID, blank for no redirect):</h3>
|
|
<input type="text" name="redirect" size="40" value="<?=$DefaultRedirectID?>" /><br />
|
|
<em>This redirects artist names as they are written, eg. new torrents and added artists. All uses of this new alias will be redirected to the alias ID you enter here. Use for common misspellings, etc.</em><br />
|
|
<input type="submit" value="Add alias" />
|
|
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
|
|
<? } ?>
|
|
</div>
|
|
<? show_footer() ?>
|