Igor Wiedler
7e44ca4d49
[feature/dic] Re-order services alphabetically
...
PHPBB3-10739
2012-08-25 16:39:38 +02:00
David King
7ee3eb16ac
[feature/add_events] Add more parameters to core.modify_posting_parameters
...
PHPBB3-9550
2012-08-23 12:49:09 -04:00
Jordan Rogers
73cd044f5c
[ticket/11066] Remove debug code error_reporting(E_ALL) from mssqlnative.php
...
For some reason, all errors are just flipped on before connecting to the
database, despite the system as a whole having a different setting for
displayable errors. Had to add & ~E_STRICT in PHP 5.4.5 to suppress Strict
Standards messages, but I would assume that the db piece shouldn't be involved
with setting error_reporting at all.
PHPBB3-11066
2012-08-23 15:41:57 +02:00
David King
e67b010846
[feature/add_events] Put globals on one line
...
PHPBB3-9550
2012-08-22 10:41:59 -04:00
David King
575980cba9
[feature/add_events] Remove $allow_bbcode and $allow_smilies
...
Upon testing it was discovered that these did not work as originally intended.
PHPBB3-9550
2012-08-22 09:37:47 -04:00
David King
46597be1a3
[feature/add_events] Globalize event dispatcher object in some functions
...
PHPBB3-9550
2012-08-22 08:37:33 -04:00
David King
4f6f0c0897
[feature/add_events] Event to modify the data array for when a user is added
...
PHPBB3-9550
2012-08-21 17:04:16 -04:00
David King
0358db2184
[feature/add_events] Before and after events for generate_text_for_* functions
...
PHPBB3-9550
2012-08-21 16:42:30 -04:00
David King
1e29f064e8
[feature/add_events] Added events for modifying generate_text_for_display()
...
The events allow you to perform extra functions on the text before nad/or
after it has been parsed for BBCode and Smilies.
PHPBB3-9550
2012-08-21 12:55:16 -04:00
David King
92761e1f2b
[ticket/10873] Change language for notice about undelivered, deleted PM.
...
See the ticket for my reasoning.
PHPBB3-10873
2012-08-21 11:59:44 -04:00
David King
a02bfcc83a
[feature/add_events] core.posting_refresh -> core.modify_posting_paramters
...
The event now lets extensions modify the posting paramters, not just refresh
PHPBB3-9550
2012-08-21 11:50:38 -04:00
David King
05755e1b37
[feature/add_events] Fixed docs, added _profile_cache to event parameters
...
PHPBB3-9550
2012-08-21 11:31:18 -04:00
David King
c0cd1fcb4f
[feature/add_events] Change alter -> modify in event name
...
PHPBB3-9550
2012-08-21 11:27:28 -04:00
David King
6c6b179dd4
[feature/add_events] Rename override to overwrite, made docs 79 chars/line
...
PHPBB3-9550
2012-08-21 11:25:52 -04:00
David King
008cf967ab
[feature/add_events] Re-fix broken test
...
PHPBB3-9550
2012-08-21 11:18:53 -04:00
Joas Schilling
d289bc13ac
[ticket/10714] Remove dependency injection and use global instead
...
This avoids loading functions_admin.php globally and was suggested by naderman
PHPBB3-10714
2012-08-21 16:49:08 +02:00
Joas Schilling
d828ef93f2
[ticket/10714] Fix unit test because of events and moved files
...
PHPBB3-10714
2012-08-21 16:36:32 +02:00
Joas Schilling
2afbec5ac4
[ticket/10714] Always try to trigger events on phpbb_dispatcher
...
We may add the if () later again, if we decide to do that.
PHPBB3-10714
2012-08-21 15:50:46 +02:00
Joas Schilling
151346c6e0
[ticket/10714] Remove event core.function_add_log, add_log should be used instead
...
PHPBB3-10714
2012-08-21 13:25:26 +02:00
Joas Schilling
7010524815
[ticket/10714] Enable event core.get_logs_get_additional_data
...
PHPBB3-10714
2012-08-21 13:19:13 +02:00
Joas Schilling
cf095dd393
[ticket/10714] Enable event core.get_logs_modify_entry_data
...
PHPBB3-10714
2012-08-21 13:12:50 +02:00
Joas Schilling
0bb4af90a4
[ticket/10714] Fix core.add_log event
...
PHPBB3-10714
2012-08-21 13:07:11 +02:00
Joas Schilling
bd6dfee23e
[ticket/10714] Add event core.get_logs_modify_type
...
core.get_logs_switch_mode is superseded by this one and therefor removed
PHPBB3-10714
2012-08-21 13:06:43 +02:00
Joas Schilling
0fcbb40a0e
[ticket/10714] Enable core.add_log event and remove superseded add_log_case
...
PHPBB3-10714
2012-08-21 12:40:55 +02:00
Joas Schilling
3170845a50
[ticket/10714] Refactor disable mechanism to only disable certain types
...
Only disable admin log when adding multiple users, so critical errors are still
logged.
PHPBB3-10714
2012-08-21 12:12:41 +02:00
Joas Schilling
2c7f498c1b
[ticket/10714] Change $phpbb_dispatcher calls to the new layout
...
PHPBB3-10714
2012-08-21 12:12:40 +02:00
Joas Schilling
1e00c697b7
[ticket/10714] Add docblock for the test cases
...
PHPBB3-10714
2012-08-21 12:12:39 +02:00
Joas Schilling
325827c40f
[ticket/10714] Inject the global $phpbb_log into view_log()
...
PHPBB3-10714
2012-08-21 12:12:38 +02:00
Joas Schilling
97290647fa
[ticket/10714] Use phpbb_log class in view_log()
...
PHPBB3-10714
2012-08-21 12:12:37 +02:00
Joas Schilling
55b94af82e
[ticket/10714] Implement get_logs() based on view_log()
...
I moved some stuff into its own function to make the code a bit clearer.
PHPBB3-10714
2012-08-21 11:59:37 +02:00
Joas Schilling
9248b9b25f
[ticket/10714] Add doc block for view_log function
...
PHPBB3-10714
2012-08-21 11:59:36 +02:00
Joas Schilling
f5063a6eda
[ticket/10714] Add incorrect offset calculation in view_log function
...
PHPBB3-10714
2012-08-21 11:59:35 +02:00
Joas Schilling
91384d8395
[ticket/10714] Add casts to integer values.
...
PHPBB3-10714
2012-08-21 11:59:35 +02:00
Joas Schilling
920cb1a0de
[ticket/10714] Add unit tests for view_log function
...
PHPBB3-10714
2012-08-21 11:59:34 +02:00
Joas Schilling
ea652f0ec9
[ticket/10714] Rename add_log_function test
...
PHPBB3-10714
2012-08-21 11:59:33 +02:00
Joas Schilling
a0b35f8e4e
[ticket/10714] Use {@inheritDoc} instead of repeating the doc-block
...
PHPBB3-10714
2012-08-21 11:59:32 +02:00
Joas Schilling
61cbabb120
[ticket/10714] Add missing log_operation to events in phpbb_log
...
PHPBB3-10714
2012-08-21 11:59:32 +02:00
Joas Schilling
b9b08cf765
[ticket/10714] Add return null to phpbb_log and add param to constructor
...
PHPBB3-10714
2012-08-21 11:59:31 +02:00
Joas Schilling
cff15ec307
[ticket/10714] Use keys for the log data instead of requiring a special order
...
PHPBB3-10714
2012-08-21 11:59:30 +02:00
Joas Schilling
1539ad7ebe
[ticket/10714] Add @return null to doc blocks
...
PHPBB3-10714
2012-08-21 11:59:30 +02:00
Joas Schilling
31e18f31a6
[ticket/10714] Serialize the log_data in the testinsteadof hardcoding it
...
PHPBB3-10714
2012-08-21 11:59:29 +02:00
Joas Schilling
72d875ebde
[ticket/10714] Add unit tests for log class
...
PHPBB3-10714
2012-08-21 11:59:28 +02:00
Joas Schilling
7e80e4004e
[ticket/10714] Add unit tests for add_log function
...
PHPBB3-10714
2012-08-21 11:59:28 +02:00
Joas Schilling
87eec7cfb6
[ticket/10714] Create a phpbb_log object and inject it into add_log
...
PHPBB3-10714
2012-08-21 11:59:27 +02:00
Joas Schilling
34ce2561a0
[ticket/10714] Remove the dirty global hack to disable the log.
...
PHPBB3-10714
2012-08-21 11:59:26 +02:00
Joas Schilling
3fbac076ce
[ticket/10714] Use new phpbb_log class in add_log function
...
PHPBB3-10714
2012-08-21 11:59:26 +02:00
Joas Schilling
cf651ef81d
[ticket/10714] Implement a class to add logs to the database.
...
PHPBB3-10714
2012-08-21 11:59:25 +02:00
Joas Schilling
c20179db72
[ticket/10876] Update regex to a version which still matches our tests
...
PHPBB3-10876
2012-08-21 11:41:27 +02:00
David King
efe9b1010a
[feature/add_events] Fix append_sid() test
...
PHPBB3-9550
2012-08-20 21:22:29 -04:00
David King
0ba755f1bd
[feature/add_events] Rename core.append_sid_override to just core.append_sid
...
Also, I added the hook back in below the event for backwards compatibility.
PHPBB3-9550
2012-08-20 20:45:09 -04:00