vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   Links and Files Database (https://vborg.vbsupport.ru/showthread.php?t=60403)

AndrewD 05-03-2004 05:48 AM

Quote:

Originally Posted by baqai
love the hack, only problem is that is there any way to show it on the nav bar on top?

Yes - you have to edit the navbar template to get the results you want. The attached example puts an entry just to the left of the FAQ button. Just experiment to get the effect you want.

baqai 05-03-2004 11:03 AM

thanks a lot working fine now :) :) :)

PranK 05-03-2004 11:50 AM

/me clicks install

nice work! thank you!

Christian

PranK 05-03-2004 11:53 AM

btw - extremely nice 'instructions.txt' - very well laid out with lots of info!!

Thanks again,

Christian

Acido 05-03-2004 03:31 PM

AndrewD, is there a way to display the rates of the links? I only can see the options to rate, but i'm confused about where the rates are displayed...

AndrewD 05-03-2004 05:04 PM

Quote:

Originally Posted by Acido
AndrewD, is there a way to display the rates of the links? I only can see the options to rate, but i'm confused about where the rates are displayed...

You spotted this about five minutes before I did. I managed to destroy the ratings display in version 1.10 by missing out a dollar sign.

If you want to fix this, edit local_links.php, line 169
PHP Code:

if (!links_rate_set

and put a dollar sign in front of links_rate_set.

Sorry about that.

The Geek 05-04-2004 01:12 PM

Superb add on.
Would be nice for the ratings to come up as stars, and if the user already rated for them not to be able to rate again.
O, would be nice for hyperlinks and email addresses to be parsed automatically. There is no easy way to add email addresses to an entry.

well done.

AndrewD 05-04-2004 01:15 PM

Quote:

Originally Posted by the nail geek
Superb add on.
Would be nice for the ratings to come up as stars, and if the user already rated for them not to be able to rate again.
O, would be nice for hyperlinks and email addresses to be parsed automatically. There is no easy way to add email addresses to an entry.

well done.

Thanks - it is not hard to change the template to display stars (I think someone already sorted that out - will try to track it down) - if someone tries to vote a second time, this is allowed, but it cancels their previous vote, i.e. their vote only gets counted once.

The Geek 05-04-2004 09:13 PM

Quote:

Originally Posted by AndrewD
Thanks - it is not hard to change the template to display stars (I think someone already sorted that out - will try to track it down) - if someone tries to vote a second time, this is allowed, but it cancels their previous vote, i.e. their vote only gets counted once.

As a workaround for that (only wanted people to vote once) I did the following:

Changed the query in get_linklistbit to this:
PHP Code:

    $query "
        SELECT link.linkid AS linkid, link.linkname AS linkname, link.linkuserid AS linkuserid,
            link.linkusername AS linkusername, link.linkurl AS linkurl, link.linkdesc AS linkdesc,
            link.linkhits AS linkhits, link.linkstatus AS linkstatus, link.linkdate AS linkdate, linkrate.linkvote
        FROM "
.THIS_TABLE."linkslink AS link
        LEFT JOIN "
.THIS_TABLE."linksltoc AS ltoc
        ON link.linkid = ltoc.linkid
        LEFT  OUTER  JOIN local_linksrate AS linkrate
        ON ( ( link.linkid = linkrate.linkid ) AND ( linkrate.linkuserid =" 
intval($bbuserinfo['userid']) ." ) )
            
$squery
        ORDER BY linkname
        "


Then under this:
PHP Code:

            $linknew iif($bbuserinfo['lastvisit'] < $myrow['linkdate'],1,0); 

I stuck this:
PHP Code:

            $linkvoted=intval($myrow["linkvote"]); 

Then in the list_linkbit template, I changed
PHP Code:

<if condition="$links_permissions[can_rate_link]"

To this:
PHP Code:

<if condition="$links_permissions[can_rate_link] AND $linkvoted==0"

May not be the best, but thought I would post it in case anyone else wanted it. As for the star, tmeplate thing... I didnt look in the 27 page thread here, but you are right... its about as easy as could be.

Just change the lins_ratebit template to this:
PHP Code:

<br />&nbsp;<br /><img src="images/rating/rating_$linkrate.gif"

Kick ass mod m8.

AndrewD 05-06-2004 05:37 PM

Quote:

Originally Posted by the nail geek
Superb add on.
Would be nice for the ratings to come up as stars, and if the user already rated for them not to be able to rate again.
O, would be nice for hyperlinks and email addresses to be parsed automatically. There is no easy way to add email addresses to an entry.

well done.

I think you added the second point after I blinked :) I missed it first time round.

You're right that a link has to be a file or an http link - it does not recognise ftps, mailtos etc. But you can add mailtos in the description, simply by using the email bbcode


All times are GMT. The time now is 12:16 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01994 seconds
  • Memory Usage 1,759KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (7)bbcode_php_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete