vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Advanced User Group Permissions (https://vborg.vbsupport.ru/showthread.php?t=182656)

xash 01-24-2010 07:38 AM

Quote:

Originally Posted by Marvin Hlavac (Post 1963780)
I need this badly! What do I need to modify to allow unlimited edit time for a particular user or user group (which ever is easier)

I have a limit set on editing own posts, but I have one user who requires unlimited editing.

Please point me in the right direction. I'd like to do this tonight... still searching...

:)

Make the user a moderator or administrator. They are not restricted by the edit time limit. Additionally you could also try adding the user to a secondary user group and set the permissions of that user group to a more restrictive set of rights, that way you might be able to restrict the user's mod capabilities. I haven't tried this, but it might work for you.

Marvin Hlavac 01-24-2010 08:12 AM

Thanks. What I ended up doing was I modified an add-in I found.

Hendrik83 02-01-2010 07:23 AM

Quote:

Originally Posted by Marvin Hlavac (Post 1965041)
Thanks. What I ended up doing was I modified an add-in I found.

Can you share it with us?

Marvin Hlavac 02-02-2010 11:45 AM

Yes, here's what I did:

1. Download the following product: https://vborg.vbsupport.ru/showthread.php?t=228623

2. I created a new user group (user group 15 in my case)

3. I added two instances of (is_member_of($vbulletin->userinfo, 15) AND into the downloaded above mentioned product's XML file:

Code:

    <![CDATA[ if (THIS_SCRIPT == 'editpost')
{
    if (is_member_of($vbulletin->userinfo, 15) AND ($vbulletin->userinfo['userid'] == $postinfo['userid']) AND $foruminfo['ls_edit_ind'])
    {
        $vbulletin->options['edittimelimit'] = 0;
    }
}  ]]> 
  </phpcode>


  </plugin>


  - <plugin active="1"  executionorder="5">
  - <title>
  - <![CDATA[ Set $post['editlink'] to true for First Post  ]]> 
  </title>


    <hookname>postbit_display_complete</hookname>

  - <phpcode>
  - <![CDATA[ if(is_member_of($vbulletin->userinfo, 15) AND ($this->post['userid'] == $vbulletin->userinfo['userid']) AND $this->forum['ls_edit_ind'])

(Replace the two instances of the red #15 above with your own user group ID.)

4. Install the product

Hendrik83 02-06-2010 01:16 PM

Its working.

Thanks Marvin Hlavac.


All times are GMT. The time now is 03:03 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.01245 seconds
  • Memory Usage 1,724KB
  • 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_code_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
  • (5)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