Your ultimate PunBB resource!
You are not logged in.
## ## ## Mod title: Links Page ## ## Mod version: 1.1 ## Works on PunBB: 1.2.* ## Release date: 2006-03-13 ## Author: El Bekko (elbekko@gmail.com) ## ## Description: Adds the possibility to have users ## post links and moderate them from ## the admin CP. ## ## Difference with ## previous version: Possibility to have alphabetical Indexing ## for the links and some small bug fixes. ## ## Affected files: Only included files ## ## Affects DB: Yes (Creates table and adds a value to config) ## ## Notes: None ## ## DISCLAIMER: Please note that "mods" are not officially supported by ## PunBB. Installation of this modification is done at your ## own risk. Backup your forum database and any and all ## applicable files before proceeding. ## ##
Offline
how can i do " only members can submit link?" ? i dont want guests submit link
Offline
Put a check in like if($pun_user['is_guest']) { message("You aren't allowed to submit"); } in the submitting part.
Offline
Also don't forget to remove the "add new link":
Search near line 56
<a href="?action=new" style="float:right"><?php echo $lang_links["Submit_New"] ?></a>
and replace with
<?php if(!$pun_user['is_guest']){ ?><a href="?action=new" style="float:right"><?php echo $lang_links["Submit_New"] ?></a><?php } ?>Yeah, but it wasn't really that needed
I'll have the option to (dis)allow guests in a future version.
Offline