123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?
- View::show_header('Create a collection', 'bbcode');
-
- if (!check_perms('site_collages_renamepersonal')) {
- $ChangeJS = " onchange=\"if ( this.options[this.selectedIndex].value == '0') { $('#namebox').ghide(); $('#personal').gshow(); } else { $('#namebox').gshow(); $('#personal').ghide(); }\"";
- }
-
- if (!check_perms('site_collages_renamepersonal') && $Category === '0') {
- $NoName = true;
- }
- ?>
- <div class="thin">
- <?
- if (isset($Err)) { ?>
- <div class="save_message error"><?=$Err?></div>
- <br />
- <?
- } ?>
- <div class="box pad">
- <form class="create_form" name="collage" action="collages.php" method="post">
- <input type="hidden" name="action" value="new_handle" />
- <input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
- <table class="layout">
- <tr id="collagename">
- <td class="label"><strong>Name</strong></td>
- <td>
- <input type="text"<?=$NoName ? ' class="hidden"' : ''; ?> name="name" size="60" id="namebox" value="<?=display_str($Name)?>" />
- <span id="personal"<?=$NoName ? '' : ' class="hidden"'; ?> style="font-style: oblique;"><strong><?=$LoggedUser['Username']?>'s personal collection</strong></span>
- </td>
- </tr>
- <tr>
- <td class="label"><strong>Category</strong></td>
- <td>
- <select name="category"<?=$ChangeJS?>>
- <?
- array_shift($CollageCats);
-
- foreach ($CollageCats as $CatID=>$CatName) { ?>
- <option value="<?=$CatID + 1 ?>"<?=(($CatID + 1 == $Category) ? ' selected="selected"' : '')?>><?=$CatName?></option>
- <?
- }
-
- $DB->query("
- SELECT COUNT(ID)
- FROM collages
- WHERE UserID = '$LoggedUser[ID]'
- AND CategoryID = '0'
- AND Deleted = '0'");
- list($CollageCount) = $DB->next_record();
- if (($CollageCount < $LoggedUser['Permissions']['MaxCollages']) && check_perms('site_collages_personal')) { ?>
- <option value="0"<?=(($Category === '0') ? ' selected="selected"' : '')?>>Personal</option>
- <?
- } ?>
- </select>
- <br />
- <ul>
- <li><strong>Theme</strong> - A collection containing releases that all relate to a certain theme</li>
- <li><strong>Staff picks</strong> - A listing of recommendations picked by the staff on special occasions.</li>
- <?
- if (($CollageCount < $LoggedUser['Permissions']['MaxCollages']) && check_perms('site_collages_personal')) { ?>
- <li><strong>Personal</strong> - You can put whatever you want here. It is your own personal collection.</li>
- <? } ?>
- </ul>
- </td>
- </tr>
- <tr>
- <td class="label">Description</td>
- <td>
- <textarea class="bbcode_editor" name="description" id="description" cols="60" rows="10"><?=display_str($Description)?></textarea>
- </td>
- </tr>
- <tr>
- <td class="label"><strong>Tags (comma-separated)</strong></td>
- <td>
- <input type="text" id="tags" name="tags" size="60" value="<?=display_str($Tags)?>" />
- </td>
- </tr>
- <tr>
- <td colspan="2" class="center">
- <strong>Please ensure your collection will be allowed under the <a href="rules.php?p=collages">Collection Rules</a>.</strong>
- </td>
- </tr>
- <tr>
- <td colspan="2" class="center"><input type="submit" value="Create collection" /></td>
- </tr>
- </table>
- </form>
- </div>
- </div>
- <? View::show_footer(); ?>
|