vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Editing ModCP? (https://vborg.vbsupport.ru/showthread.php?t=95376)

Urges 08-31-2005 07:36 PM

I installed the super moderator permissions plug, and that does pretty much everything I want, except I can't limit the amount of time moderators are allowed to ban for, and I can't add extra administrative tools into Smod CP.

I'm pretty fussy :P.

Does anyone know how I can manually remove and add mod tools, and manually create another modcp, (which is password protected - this will be given out to super moderators), and add/remove tools from there.

Thanks a lot.

Andreas 08-31-2005 07:41 PM

Add: Hook mod_index_navigation
Remove: Not possible without File Edits. However, this should not be necessary as only those Entries where the User has Permission will show up.

To limit the amount of time for a Ban, take a look here:
https://vborg.vbsupport.ru/showthread.php?t=93459

Urges 08-31-2005 08:03 PM

Quote:

Originally Posted by KirbyDE
Add: Hook mod_index_navigation

What do you mean by that? I appologise for my incompetence, and thank you.

Andreas 08-31-2005 08:04 PM

I mean that you can add Code to Hook mod_index_navigation the extend the ModCP Navigation Frame.

Urges 08-31-2005 08:13 PM

Quote:

Originally Posted by KirbyDE
I mean that you can add Code to Hook mod_index_navigation the extend the ModCP Navigation Frame.

...And how would I go about doing that? Lol, I do appologise, I have no experience when it come to editing vB...

Also, the 3 week ban plugin only allows the moderator to ban for a period of 3 weeks, nothing less. The object is so that they can ban for the time periods of 1 day - 3 weeks. Oh, and there is no way to separate the 3 week ban permission from modcp to smodcp (who should be able to to ban for any of the default periods of time).

Perhaps you should just give up on me now? :P.

Thanks.

Andreas 08-31-2005 08:29 PM

Well, your request was "for 3 weeks ONLY.", so the Plugin exactly implements this :)
If you want "for up to 3 weeks ONLY", use this Code instead:

PHP Code:

function my_convert_date_to_timestamp($period)
{
    
$p explode('_'$period);

    if (
$p[0] == 'P')
    {
        
$time 0;
        return 
0;
    }
    else
    {
        
$d explode('-'date('H-i-n-j-Y'));
        
$date = array(
            
'h' => &$d[0],
            
'm' => &$d[1],
            
'M' => &$d[2],
            
'D' => &$d[3],
            
'Y' => &$d[4]
        );

        
/*if ($date['m'] >= 30)
        {
            $date['h']++;
        }*/

        
$date["$p[0]"] += $p[1];
        return 
mktime($date['h'], 00$date['M'], $date['D'], $date['Y']);
    }
}


if (
$_REQUEST['do'] == 'dobanuser' AND my_convert_date_to_timestamp($vbulletin->GPC['period']) > (TIMENOW+1814400) AND !($permissions['adminpermissions'] & $vbulletin->bf_ugp_adminpermissions['cancontrolpanel']))
{
    
print_stop_message('no_permission_ban_users');


The Code you have to put in Hook mod_index_navigation depends on what you want to do, therefore I can't tell.

There is no "SMod CP" - just a ModCP that can be accessed by Moderators, Supermods and Admins.


All times are GMT. The time now is 11:07 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.01062 seconds
  • Memory Usage 1,746KB
  • 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
  • (1)bbcode_php_printable
  • (2)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
  • (6)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