aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_module.php
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'dhruvgoel92/ticket/10704' into developAndreas Fischer2012-03-221-1/+1
|\ | | | | | | | | * dhruvgoel92/ticket/10704: [ticket/10704] minor typo in a comment
| * [ticket/10704] minor typo in a commentDhruv Goel2012-03-221-1/+1
| | | | | | | | | | | | Make sure $id separation is working fine PHPBB3-10704
* | [task/php54-ascraeus] Bring p_master#module_auth into PHP 5 era.Oleg Pudeyev2012-03-161-5/+17
|/ | | | | | | | Split module_auth into a static and a non-static version. Call the static version statically and the non-static version non-statically. PHPBB3-10615
* [ticket/10634] Changing p_master::is_full_classVjacheslav Trushkin2012-02-091-1/+1
| | | | | | Changing p_master::is_full_class to check allow all module types, not only current type PHPBB3-10634
* [ticket/10477] Correctly document module (base)name parameterNils Adermann2012-01-131-1/+2
| | | | PHPBB3-10477
* [ticket/10477] Document parameters to p_master#load.Oleg Pudeyev2012-01-131-1/+8
| | | | PHPBB3-10477
* [ticket/10477] Normalize loaded module names to be class names or xcp_ prefixedNils Adermann2012-01-061-0/+7
| | | | PHPBB3-10477
* [ticket/9916] Updating header license and removing Version $Id$Unknown2011-12-311-2/+1
| | | | PHPBB3-9916
* [feature/extension-manager] Rename default methods to core methods on finder.Nils Adermann2011-11-181-3/+2
| | | | | | | There are now extension_ and core_ methods for all finder settings as well as a generic method which overwrites both. PHPBB3-10323
* [feature/extension-manager] Add docblocks to new methods in functions_moduleNils Adermann2011-11-181-2/+15
| | | | PHPBB3-10323
* [feature/extension-manager] Properly remove old ACP language loading codeNils Adermann2011-10-141-24/+0
| | | | PHPBB3-10323
* [feature/extension-manager] Support for loading language files from extensionsNils Adermann2011-10-141-1/+18
| | | | | | | The referenced extension needs to be explicitly specified in an add_lang_ext() call. PHPBB3-10323
* [feature/extension-manager] Allow old non-prefix basenames to work for lookupsNils Adermann2011-10-131-9/+37
| | | | | | | These module basenames are hardcoded in a bunch of places so they need to continue to work unless we want to rewrite all of them. PHPBB3-10323
* [feature/extension-manager] Always store the full class name as module basenameNils Adermann2011-09-291-7/+8
| | | | | | The updater swaps out all basenames. PHPBB3-10323
* [feature/extension-manager] Load (A/U/M)CP modules from extensionsNils Adermann2011-09-291-43/+41
| | | | | | | | | To avoid large bc breaking changes, modules in the old includes directory structure still follow the same naming conventions. Modules in extensions have to be placed in an xcp/ folder and need a _module suffix. The corresponding info file is in the same directory but with an _info suffix. PHPBB3-10323
* [ticket/9556] Drop php closing tags, add trailing newlineIgor Wiedler2010-11-111-2/+0
| | | | | | | | | | | | Closing tags converted using Oleg's script. remove-php-end-tags.py -a . Trailing newlines added using the following where $ext is file extension. find . -type f -name "*.$ext" -print | xargs printf "e %s\nw\n" | ed -s; Extensions: php, css, html, js, xml. PHPBB3-9556
* [feature/request-class] Convert any direct access to $_* to use $requestIgor Wiedler2010-09-251-1/+2
| | | | PHPBB3-9716
* Copy 3.0.x branch to trunkMeik Sievertsen2009-10-041-0/+883
| | | | git-svn-id: file:///svn/phpbb/trunk@10211 89ea8834-ac86-4346-8a33-228a782c2dd0
* Move trunk/phpBB to old_trunk/phpBB Meik Sievertsen2009-10-041-849/+0
| | | | git-svn-id: file:///svn/phpbb/trunk@10210 89ea8834-ac86-4346-8a33-228a782c2dd0
* Adjust some files to support new methods...Meik Sievertsen2009-01-191-17/+2
| | | | git-svn-id: file:///svn/phpbb/trunk@9279 89ea8834-ac86-4346-8a33-228a782c2dd0
* modified some files to get the admin index page working, as well as index ↵Meik Sievertsen2009-01-161-35/+19
| | | | | | | | page in logged in state and not logged in state additionally prepare for a working installation git-svn-id: file:///svn/phpbb/trunk@9272 89ea8834-ac86-4346-8a33-228a782c2dd0
* $config to phpbb::$configMeik Sievertsen2008-12-281-3/+3
| | | | git-svn-id: file:///svn/phpbb/trunk@9242 89ea8834-ac86-4346-8a33-228a782c2dd0
* implement new phpbb::$acm object, replacing $cache globalMeik Sievertsen2008-12-281-3/+3
| | | | git-svn-id: file:///svn/phpbb/trunk@9240 89ea8834-ac86-4346-8a33-228a782c2dd0
* add nils' request and super globals classMeik Sievertsen2008-12-251-1/+1
| | | | | | rename request:: to phpbb_request:: git-svn-id: file:///svn/phpbb/trunk@9230 89ea8834-ac86-4346-8a33-228a782c2dd0
* - updated all code to use the request class instead of any direct access toNils Adermann2008-11-241-1/+1
| | | | | | | | | super globals - disabled super globals in common.php. See commit r9101 for more information - cleaned up/simplified a few lines along the way. git-svn-id: file:///svn/phpbb/trunk@9102 89ea8834-ac86-4346-8a33-228a782c2dd0
* [Change] Alllow applications to set custom module inclusion path (idea by HoL)Meik Sievertsen2008-11-231-1/+35
| | | | git-svn-id: file:///svn/phpbb/trunk@9096 89ea8834-ac86-4346-8a33-228a782c2dd0
* Merge of the language-specific custom path change Revision #r8782Meik Sievertsen2008-08-241-2/+2
| | | | git-svn-id: file:///svn/phpbb/trunk@8786 89ea8834-ac86-4346-8a33-228a782c2dd0
* ok... i hope i haven't messed too much with the code and everything is still ↵Meik Sievertsen2008-05-291-13/+12
| | | | | | | | | | working. Changes: - Ascraeus now uses constants for the phpbb root path and the php extension. This ensures more security for external applications and modifications (no more overwriting of root path and extension possible through insecure mods and register globals enabled) as well as no more globalizing needed. - A second change implemented here is an additional short-hand-notation for append_sid(). It is allowed to omit the root path and extension now (for example calling append_sid('memberlist')) - in this case the root path and extension get added automatically. The hook is called after these are added. git-svn-id: file:///svn/phpbb/trunk@8572 89ea8834-ac86-4346-8a33-228a782c2dd0
* merge with revision #r8350Meik Sievertsen2008-01-301-3/+3
| | | | git-svn-id: file:///svn/phpbb/trunk@8351 89ea8834-ac86-4346-8a33-228a782c2dd0
* Merging revisions #r8346, #r8347 and #r8348Meik Sievertsen2008-01-291-7/+7
| | | | git-svn-id: file:///svn/phpbb/trunk@8349 89ea8834-ac86-4346-8a33-228a782c2dd0
* dumdidum... sorry. ;)Meik Sievertsen2007-10-051-3/+11
| | | | git-svn-id: file:///svn/phpbb/trunk@8146 89ea8834-ac86-4346-8a33-228a782c2dd0
* this addition was only a test...Meik Sievertsen2007-08-131-1/+0
| | | | git-svn-id: file:///svn/phpbb/trunk@8026 89ea8834-ac86-4346-8a33-228a782c2dd0
* Some changes... non-invasive...Meik Sievertsen2007-08-131-0/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@8025 89ea8834-ac86-4346-8a33-228a782c2dd0
* + some fixesMeik Sievertsen2007-07-241-23/+33
| | | | git-svn-id: file:///svn/phpbb/trunk@7938 89ea8834-ac86-4346-8a33-228a782c2dd0
* it has been decided amongst the team that using glob() is bad practice, ↵Meik Sievertsen2007-07-171-18/+7
| | | | | | after determining the overall usage among projects as well as the security history of the function. git-svn-id: file:///svn/phpbb/trunk@7900 89ea8834-ac86-4346-8a33-228a782c2dd0
* more failsafe "glob()" method.Meik Sievertsen2007-07-101-2/+18
| | | | git-svn-id: file:///svn/phpbb/trunk@7863 89ea8834-ac86-4346-8a33-228a782c2dd0
* - do not include if there are no files fetched with glob()Meik Sievertsen2007-07-091-2/+6
| | | | | | | - allow options for merged files on update (merge, new file, old file) git-svn-id: file:///svn/phpbb/trunk@7848 89ea8834-ac86-4346-8a33-228a782c2dd0
* allow mod authors to plug in info_ language files for population within the ↵Meik Sievertsen2007-07-011-0/+16
| | | | | | menu. git-svn-id: file:///svn/phpbb/trunk@7819 89ea8834-ac86-4346-8a33-228a782c2dd0
* "Ghost" topics in active topics list when shadow topics and corresponding ↵Meik Sievertsen2007-04-301-2/+2
| | | | | | | | | | | | | topic in same resultset [#10313] Find a member supporting hidden groups for those able to see them [#10305] Display hidden groups for all those able to see them across the board (composing messages, viewonline) Fix space for sending PM's to groups Let the permissions_phpbb file be included the same way as all other permission files [#10301] Add request_a-z+ handling within modules_auth suggested by Pyramide. This will allow modders to directly show/hide their module in addition to !empty() $_REQUEST variables. [#10297] git-svn-id: file:///svn/phpbb/trunk@7433 89ea8834-ac86-4346-8a33-228a782c2dd0
* #10005, #10003, #10001, #9999, #9945, #9965, #9909, #9906, #9877, #9861, ↵Meik Sievertsen2007-04-221-0/+27
| | | | | | | | | | | | | | | | | | #9831, #9830, #9815, #9665, #9624 prosilver adjustments for important announcements in ucp - #9995 MCP fixes for user notes/warnings - #9981 Preserving imageset values on save/edit find a member link for Mass PM's - #9925 syndicate window.onload events where necessary - #9878 Duplicate topics in forums with announcements - #9840 Email template for forced re-activation - #9808 Topic pagination adjustment - #9763 Changed compose message layout in UCP - #9706, #9702 Fixed inline attachment font size (hopefully) git-svn-id: file:///svn/phpbb/trunk@7384 89ea8834-ac86-4346-8a33-228a782c2dd0
* some tiny bugfixes and changed is_active() a bit...Meik Sievertsen2007-03-261-25/+7
| | | | git-svn-id: file:///svn/phpbb/trunk@7232 89ea8834-ac86-4346-8a33-228a782c2dd0
* #5280David M2007-03-241-0/+38
| | | | git-svn-id: file:///svn/phpbb/trunk@7229 89ea8834-ac86-4346-8a33-228a782c2dd0
* - added confirm box to ucp zebra (adding fried/foe)Meik Sievertsen2007-01-241-1/+1
| | | | | | | | | - permission fixes for conversions - use more appropiate error message within convertor if source tables could not be found - other tiny fixes git-svn-id: file:///svn/phpbb/trunk@6925 89ea8834-ac86-4346-8a33-228a782c2dd0
* fixing mcp bugs by introducing a new feature to check for loaded/accessible ↵Meik Sievertsen2007-01-221-0/+58
| | | | | | modules/modes. If the MCP module "logs" get disabled the quick mod tools on viewtopic still show a link to the logs, this will then lead to an error message. This is not fixable. The logs should be accessible to all moderators by default. git-svn-id: file:///svn/phpbb/trunk@6920 89ea8834-ac86-4346-8a33-228a782c2dd0
* some fixes todayMeik Sievertsen2006-12-241-3/+8
| | | | | | | - most important change is the consolidation of the display attachment functions; merging them together to have one function we need to call. git-svn-id: file:///svn/phpbb/trunk@6803 89ea8834-ac86-4346-8a33-228a782c2dd0
* - some fixesMeik Sievertsen2006-12-211-3/+5
| | | | | | | - important bugfix for the mcp and determining allowed ids in general (if global announcements are included) git-svn-id: file:///svn/phpbb/trunk@6787 89ea8834-ac86-4346-8a33-228a782c2dd0
* hmm, this was for debugging. :)Meik Sievertsen2006-11-211-3/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@6630 89ea8834-ac86-4346-8a33-228a782c2dd0
* - fixing a bunch of bugsMeik Sievertsen2006-11-211-3/+7
| | | | | | | | - moved the install trigger error to sessions and also disabled it for those having DEBUG_EXTRA enabled. i hope not having introduced too many new bugs. git-svn-id: file:///svn/phpbb/trunk@6628 89ea8834-ac86-4346-8a33-228a782c2dd0
* fix for bug #5490Meik Sievertsen2006-11-201-0/+5
| | | | | | | - make sure bots are catched by the posting auth too. git-svn-id: file:///svn/phpbb/trunk@6619 89ea8834-ac86-4346-8a33-228a782c2dd0
* some tiny fixes.Meik Sievertsen2006-11-191-2/+31
| | | | git-svn-id: file:///svn/phpbb/trunk@6614 89ea8834-ac86-4346-8a33-228a782c2dd0