Jump to content

Adriano Faria

Clients
  • Posts

    31,967
  • Joined

  • Days Won

    476

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Projects

Release Notes v5

Invision Community 5 Bug Tracker

Forums

Events

Store

Gallery

Everything posted by Adriano Faria

  1. File Name: (SOS30) TOP 20 Reputation v1.1.1 File Submitter: Adriano Faria File Submitted: 17 Nov 2009 File Updated: 14 Mar 2010 File Category: Hooks and Plugins This hook will create another statistic to your forum: Top 20 Reputation, where will list 20 users with more points. Now you can set: If you want to format user links with their group colorIf you want to show banned users on the list Click here to download this file
  2. New version released! Change log: 1.0.1 => 1.0.2: Driver Error when click on others tabs from TODAY'S ACTIVE CONTENT, for those who didn't select any forum. Manual fix: On admin\applications\core\modules_public\search\search.php, find: /* (SOS30) Block Forums from 'View New Content' v1.0.1 */ if( $this->request['search_app'] == 'forums' AND $this->settings['sos30_blockforums_on'] AND in_array( $this->member->getProperty('member_group_id') , explode(',', $this->settings['sos30_blockforums_groups'] ) ) ) { $this->search_plugin->setCondition( 't.forum_id', 'NOT IN', $this->memberData['blocked_forums'] ); } Change to: /* (SOS30) Block Forums from 'View New Content' v1.0.2 */ if( $this->request['search_app'] == 'forums' AND $this->settings['sos30_blockforums_on'] AND in_array( $this->member->getProperty('member_group_id') , explode(',', $this->settings['sos30_blockforums_groups'] ) ) AND $this->memberData['blocked_forums'] != '' ) { $this->search_plugin->setCondition( 't.forum_id', 'NOT IN', $this->memberData['blocked_forums'] ); }
  3. Damn... you're right. I'll make some tests later.
  4. New version released! Change log: 1.0.0 => 1.0.1: Driver Error when click on others tabs from TODAY'S ACTIVE CONTENT. Manual fix: Open admin\applications\core\modules_public\search\search.php and find: /* (SOS30) Block Forums from 'View New Content' v1.0.0 */ if( $this->settings['sos30_blockforums_on'] AND in_array( $this->member->getProperty('member_group_id') , explode(',', $this->settings['sos30_blockforums_groups'] ) ) ) { $this->search_plugin->setCondition( 't.forum_id', 'NOT IN', $this->memberData['blocked_forums'] ); } Change to: /* (SOS30) Block Forums from 'View New Content' v1.0.1 */ if( $this->request['search_app'] == 'forums' AND $this->settings['sos30_blockforums_on'] AND in_array( $this->member->getProperty('member_group_id') , explode(',', $this->settings['sos30_blockforums_groups'] ) ) ) { $this->search_plugin->setCondition( 't.forum_id', 'NOT IN', $this->memberData['blocked_forums'] ); }
  5. Tks, guys. It's the first one, on line 568. The second one is uselless; it is the VIEW NEW POSTS, which isn't used on IPB3. For VIEW NEW CONTENT, it's the other file. But I'll add this to the ReadMe file! ;)
  6. File Name: (SOS30) Block Forums from 'View New Content' v1.1.0 File Submitter: Adriano Faria File Submitted: 08 Nov 2009 File Updated: 28 Jan 2010 File Category: Modifications By default, IP.Board shows the topics/posts from all forums when the user clicks in View New Content link. With this MOD, you give the user the option to select which forums he wants to see in VIEW NEW CONTENT search and TODAY'S ACTIVE CONTENT search. It's very nice to be used on forums with many categories/forums. For example: a user that uses ASP may not want to see the posts from PHP forum or maybe user didn't want to see topics from RSS forum, etc. Affected Files: admin\applications\forums\extensions\usercpForms.php admin\applications\forums\extensions\searchPlugin.php Change log: 1.0.2 => 1.1.0: Adjusts to run on IP.Board 3.0.5 and quick list of forums blocked 1.01 => 1.0.2: Driver Error when click on others tabs from TODAY'S ACTIVE CONTENT, ror those who didn't select any forum. 1.0.0 => 1.0.1: Driver Error when click on others tabs from TODAY'S ACTIVE CONTENT. Click here to download this file
  7. File Name: (SOS30) Auto-Topic Upon New Registration v1.0.0 File Submitter: Adriano Faria File Submitted: 06 Nov 2009 File Updated: 23 Apr 2010 File Category: Modifications This mod will create a topic for every new member registered on your board. Copyright Note: This mod is an upgrade of mod D23-Auto-Topic Upon New Registration v1.0 for IP.Board 2.3.X, by Dean & Logan, from D-Scripting. This upgrade was authorized by Logan Logan. Click here to download this file
  8. While it's not a built-in in IPB3, I'm updating a mod that I've made to IPB2. Must finish it today or tomorrow.
  9. Nope, you'll see the number on skin selector, down the page.
  10. There's no announcement. This mod uses the News Set-up feature from IPB... it only shows on every page.
  11. It uses a query to retrieve data from database! If you have a very large board with several users line, it's better not to use, of course! But that mod it's exacly a copy of same from IPB 2.3.X, only converted to IPB3. There's nothing different...
  12. Fixed the untranslated text on ReadMe.html!
  13. 1.0.1 released to fix an issue on group manage. Manual fix: on admin/applications/forums/sources/classes/post/classPostForms.php, change: $grupo = IPSText::cleanPermString( $this->registry->class_forums->forum_by_id[ $this->request['f'] ]['sos30_regra_grupos'] ); if ( $this->registry->class_forums->forum_by_id[ $this->request['f'] ]['sos30_regra_onoff'] AND $this->registry->class_forums->forum_by_id[ $this->request['f'] ]['sos30_regra_texto'] != '' AND in_array( $this->memberData['member_group_id'], array( $grupo ) ) AND $_POST['agree_to_terms'] != 1 AND !$this->getIsPreview() ) to: $grupo = $this->registry->class_forums->forum_by_id[ $this->request['f'] ]['sos30_regra_grupos']; if ( $this->registry->class_forums->forum_by_id[ $this->request['f'] ]['sos30_regra_onoff'] AND $this->registry->class_forums->forum_by_id[ $this->request['f'] ]['sos30_regra_texto'] != '' AND in_array( $this->memberData['member_group_id'], explode( ',', $grupo ) ) AND $_POST['agree_to_terms'] != 1 AND !$this->getIsPreview() )
  14. File Name: (SOS30) PM Notification on Reputation v1.0.1 File Submitter: Adriano Faria File Submitted: 18 Oct 2009 File Category: Modifications This mod will send a PM to the post author when he had a reputation on his posts. You can set which user groups will receive the PMs and in which forums this will happen. You can also set the type of reputation (positive, negative or both), author ID, title and message for the PM. Just like IPB, this mod is based on discretion, since it doesn't tell who gave you the point... it just shows in which post it was. File Affected: admin\sources\classes\class_reputation_cache.php Click here to download this file
  15. Where is it ? http://community.invisionpower.com/index.php?app=chat ? I got:
  16. I can only imagine that you've made something wrong. Got this running on my 3.0.4 online board. :huh:
  17. Bug fixed! ps: tks to Michael John on helping on that!
  18. IP.Board 3.0.4 ? I have to check it out... maybe something has changed on IP.Board 3.0.4!
  19. File updated to add other groups on profile minicard: ;)
  20. File Name: (SOS30) New Topic Rules v1.0.1 File Submitter: Adriano Faria File Submitted: 15 Sep 2009 File Updated: 25 Oct 2009 File Category: Modifications This MOD will create a specific rule for the forums you want, so users of specific groups, set by the administrator, must agree before they can create a new topic. Affected Files: admin/applications/forums/modules_admin/forums/forums.phpadmin/applications/forums/skin_cp/cp_skin_forums.php admin/applications/forums/sources/classes/post/classPostForms.php Click here to download this file
  21. File Name: (SOS30) Number of Users per Skin v1.0.2 File Submitter: Adriano Faria File Submitted: 07 Sep 2009 File Updated: 14 Feb 2010 File Category: Modifications This MOD will show how many users are using each skin. Affected files: admin/sources/classes/output/formats/html/htmlOutput.php Click here to download this file
  22. File Name: (SOS30) Members Viewing Topics v1.0.0 File Submitter: Adriano Faria File Submitted: 01 Sep 2009 File Updated: 28 Oct 2009 File Category: Modifications This MOD will show, on forum view, how many users (guests and registered members) are viewing each topic. You can set if you want to show a message when no user is reading a topic; groups allowed to see the total of users reading a topic and you can exclude specific forums from showing how many are reading its topics. Copyright Note This mod is an update of [BoT] Users Viewing Topic v1.1.0 (IP.Board 2.3.X), from Trialga (Bryan), from Trialga Community Forums. This update was authorized by Trialga. File Affected: admin/applications/forums/modules_public/forums/forums.php Click here to download this file
  23. File Name: (SOS30) Hide Application's Tabs from Groups v1.0.0 File Submitter: Adriano Faria File Submitted: 23 Aug 2009 File Updated: 28 Feb 2010 File Category: Modifications This MOD will allow to hide component's tab from specific groups. Files Affected: adminsourcesclassesoutputformatscoreOutput.php adminapplicationscoreskin_cpcp_skin_applications.php adminapplicationscoremodules_adminapplicationsapplications.php Click here to download this file
  24. File Name: (SOS30) Hidden Links of Links System v1.0.1 File Submitter: Adriano Faria File Submitted: 26 Jul 2009 File Category: Hooks and Plugins This hook will show on board top, besides Admin CP link, how many links are awaiting approval on Links System. The text is linked to the 'Moderation Panel' of Links System. Compatibility: IP.Board 3.0.XLinks System 3.1.X Change from 1.0.0 => 1.0.1: no query is used. Now it's used Links System cache. Click here to download this file
  25. File Name: (SOS31) Secondary Groups Indicator File Submitter: Adriano Faria File Submitted: 21 Jul 2009 File Updated: 07 Jun 2011 File Category: Hooks and Plugins This HOOK will show all the secondary groups that a user belongs. It will show on UserInfoPane (posts, PMs, calendar events, apps, etc.), profile view and personal card. Note: Compatibility: IP.Board 3.1.X No file or template edit required Click here to download this file
×
×
  • Create New...