PunBB Resource

Your ultimate PunBB resource!

Keywords:

    (Extended)

You are not logged in.


Login to move these ads to the bottom of the page

#1 2006-03-13 13:21:50

elbekko
Moderator
From: Leuven, Belgium
Registered: 2006-01-31
Posts: 1422

Links Page 1.1

Code:

##
##
##        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.
##
##

Download here


FluxBB
dictionary.com on programming: The most fun you can have with your clothes on (although clothes are not mandatory).

Offline

 

#2 2006-03-17 18:49:59

thething
Member
Registered: 2006-01-20
Posts: 10

Re: Links Page 1.1

how can i do " only members can submit link?" ? i dont want guests submit link

Offline

 

#3 2006-03-18 09:37:28

elbekko
Moderator
From: Leuven, Belgium
Registered: 2006-01-31
Posts: 1422

Re: Links Page 1.1

Put a check in like if($pun_user['is_guest']) { message("You aren't allowed to submit"); } in the submitting part.


FluxBB
dictionary.com on programming: The most fun you can have with your clothes on (although clothes are not mandatory).

Offline

 

#4 2006-03-18 16:21:35

thething
Member
Registered: 2006-01-20
Posts: 10

Re: Links Page 1.1

done tnkx

Offline

 

#5 2006-03-19 10:35:55

MrMister
Guest

Re: Links Page 1.1

Also don't forget to remove the "add new link":

Search near line 56

Code:

<a href="?action=new" style="float:right"><?php echo $lang_links["Submit_New"] ?></a>

and replace with

Code:

<?php if(!$pun_user['is_guest']){ ?><a href="?action=new" style="float:right"><?php echo $lang_links["Submit_New"] ?></a><?php } ?>
 

#6 2006-03-19 10:39:26

elbekko
Moderator
From: Leuven, Belgium
Registered: 2006-01-31
Posts: 1422

Re: Links Page 1.1

Yeah, but it wasn't really that needed wink I'll have the option to (dis)allow guests in a future version.


FluxBB
dictionary.com on programming: The most fun you can have with your clothes on (although clothes are not mandatory).

Offline

 

Board footer

Based on PunBB
© Copyright 2002–2005 Rickard Andersson

© Copyright 2004–2006 Kristoffer Jansson

User contributed files are property of their respective owners.