vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Different Postbit for Mods/Admins (https://vborg.vbsupport.ru/showthread.php?t=41930)

Ryangel 08-05-2002 07:27 AM

Different Postbit for Mods/Admins
 
Can this be achieved?

What comes to my mind first is showthread.php, and a new templates postbit_admin, postbit_mod.

I did open up showthread and got lost after loking through it. lol.
Anyone here worked with showthread a whole lot and know which part i should look at? (if its even showthread.php at all :rolleyes: )

Just wondering... Thanks.

Logician 08-05-2002 08:57 AM

Edit functions.php, find:

PHP Code:

    } else {
        eval(
"\$retval = \"".gettemplate("postbit")."\";");
    } 

Replace it as:
PHP Code:

} else {

if ($
$bbuserinfo[usergroupid]==6
{eval(
"\$retval = \"".gettemplate("postbit2")."\";");
}
else{
eval(
"\$retval = \"".gettemplate("postbit")."\";");
}



Now create a new template named "postbit2" and you are done.. ;)

The ideal hack would be to give the users the option of choosing the postbit template they want to use and to post custom postbits for admins to add to postbit library. We discussed about this hack some time ago. I want to code it but I have other hacks more important to me in my pending list and nobody volunteered to code it although everybody liked the idea. I'm reminding the hackers reading requests forum once more: This would be a very nice hack if you have time to code it. ;)

Xenon 08-05-2002 11:28 AM

i have started on such a hack some time ago, but have had problems with the replacementvars this time, so i stopped it.

perhaps i'll give it another try next weeks while i'm at work ;)

Logician 08-05-2002 12:19 PM

I dont know what the problem was, but if you share your algorithm and the problems you encountered I believe we can solve the problems.

I would structure the hack like this:
* a seperate table that saves custom post bits.
* Code to post new postbits (invisible/moderated) and Admin CP integration to add/edit/approve (make visible) these new postbits
* User CP modification to give the users the right to choose their postbit. ($bbuserinfo[postbit])
* functions.php modification to check if $bbuserinfo[postbit] is set, if yes get the postbit from custom table to apply, if no/or invalid/unallowed postbit get default one.
You can use the function in webtemplates hack to get/parse a custom template from a custom table.

Needless to say anything I can do, I'm ready for help.. :)

Xenon 08-05-2002 12:29 PM

That's the problem, i've deleted all of my code because it doesn't work ;)

but i think it wouldn't be so hard to rewrite it

my hackstructure was a bit different:
* an extra field in user-table called custompostbit
* editable below the signature in usercp
- If a user hasn't entered one, it displays the standart postbit in the textbox
- After saving profile it compares it with the standart, if the custom is empty or equal to standart nothing is saved in the db
- it was unmoderated, because just Admins got that feature ;)

Now i think anything i can do, but i started the hack, some time ago while i wasn't as good as now ;)

i think i'll restart the project these weeks, and the other ones on my large to do list now ;)

Ryangel 08-05-2002 03:52 PM

Quote:

Originally posted by Logician
Edit functions.php, find:

PHP Code:

    } else {
        eval(
"\$retval = \"".gettemplate("postbit")."\";");
    } 

Replace it as:
PHP Code:

} else {

if ($
$bbuserinfo[usergroupid]==6
{eval(
"\$retval = \"".gettemplate("postbit2")."\";");
}
else{
eval(
"\$retval = \"".gettemplate("postbit")."\";");
}



Now create a new template named "postbit2" and you are done.. ;)

The ideal hack would be to give the users the option of choosing the postbit template they want to use and to post custom postbits for admins to add to postbit library. We discussed about this hack some time ago. I want to code it but I have other hacks more important to me in my pending list and nobody volunteered to code it although everybody liked the idea. I'm reminding the hackers reading requests forum once more: This would be a very nice hack if you have time to code it. ;)

whao, thanks!
Much appreciated.

Ryangel 08-06-2002 12:08 AM

hmmm this is my new fnction.php edit

PHP Code:

// do posts from ignored users
    
if (($ignore[$post[userid]] and $post[userid] != 0)) {
        eval(
"\$retval = \"".gettemplate("postbit_ignore")."\";");
    } else {
        if (
$bbuserinfo[usergroupid]==6) {
            eval(
"\$retval = \"".gettemplate("postbit_admin")."\";");
        }
        else{
            eval(
"\$retval = \"".gettemplate("postbit")."\";");
        }

    }
    return 
$retval;


but somehow its displaying all the posts with postbit_admin . Even with normal users. Any ideas?

Xenon 08-06-2002 01:22 AM

change it to that:

PHP Code:

// do posts from ignored users
    
if (($ignore[$post[userid]] and $post[userid] != 0)) {
        eval(
"\$retval = \"".gettemplate("postbit_ignore")."\";");
    } else {
        if (
$post[usergroupid]==6) {
            eval(
"\$retval = \"".gettemplate("postbit_admin")."\";");
        }
        else{
            eval(
"\$retval = \"".gettemplate("postbit")."\";");
        }

    }
    return 
$retval;



squawell 08-06-2002 01:40 AM

i use firefly's hack--postbit_first so this is my functions code

how do i change it??
PHP Code:

// do posts from ignored users
    
if (!$ignore[$post[userid]]) {
        eval(
"\$retval = \"".gettemplate($templatename)."\";");
    } else {
        eval(
"\$retval = \"".gettemplate("postbit_ignore")."\";");
    }
    return 
$retval;



Xenon 08-06-2002 01:43 AM

PHP Code:

// do posts from ignored users
    
if (!$ignore[$post[userid]]) {
        if (
$post[usergroupid]==6) {
            eval(
"\$retval = \"".gettemplate("postbit_admin")."\";");
        }
        else{
            eval(
"\$retval = \"".gettemplate("$templatename")."\";");
        }
    } else {
        eval(
"\$retval = \"".gettemplate("postbit_ignore")."\";");
    }
    return 
$retval;




All times are GMT. The time now is 10:32 PM.

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.01833 seconds
  • Memory Usage 1,764KB
  • 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
  • (8)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (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