tuupola / frog_dashboard
- Source
- Commits
- Network (2)
- Issues (0)
- Downloads (1)
- Wiki (1)
- Graphs
-
Branch:
master
commit 4a3ed7470bbb2aba4f0a0e96516334eebaa21cf6
tree 6afb4849495532d6febb79bf9ed3b2fe89a2ed47
parent 575862c19e678cc77cfad9955fab7cd50faed5a6
tree 6afb4849495532d6febb79bf9ed3b2fe89a2ed47
parent 575862c19e678cc77cfad9955fab7cd50faed5a6
| name | age | message | |
|---|---|---|---|
| |
DashboardController.php | Mon Apr 27 06:56:00 -0700 2009 | |
| |
README.textile | Fri Aug 07 13:14:47 -0700 2009 | |
| |
dashboard.css | Mon Dec 08 07:25:05 -0800 2008 | |
| |
disable.php | Fri Aug 07 13:14:47 -0700 2009 | |
| |
enable.php | Fri Aug 07 13:14:47 -0700 2009 | |
| |
img/ | Thu May 07 06:12:39 -0700 2009 | |
| |
index.php | Thu Aug 13 00:33:13 -0700 2009 | |
| |
lib/ | Thu Mar 12 09:15:24 -0700 2009 | |
| |
models/ | Fri Aug 07 10:04:44 -0700 2009 | |
| |
views/ | Thu Apr 30 06:49:59 -0700 2009 |
README.textile
Changelog
0.4.0-dev
- Fix install problem when system had PDO disable (aeischeid).
- General code cleanup.
HEADS UP! Order of $ident and $priority parameters was changed. Code is backward compatible. Still, from now on you should now use the following code in your plugins:
Observer::notify('log_event', $message, $ident, $priority);
0.3.1
- Use :username instead of [username] for custom logging.
0.3.0
- Prevent direct access to enable and disable scripts.
- Support for SQLite.
- Log logout event.
- Log username to separate column in database (for future use).
- Add FamFamFam icons for pretty log event priorities.
- Listen to general log_event event. Usefull for other plugin developers who want to log their events.
NOTE! Database schema was changed. Either disable and enable the plugin after upgrading to recreate the table. This will cause you to lose your history. If you do not want to loose history run the following SQL by hand.
ALTER TABLE <table_prefix>_dashboard_log
ADD COLUMN username VARCHAR(64)
AFTER message;
0.2.1
- Use pretty date in dates. Show real date as tooltip.
- Fix problem of before yesterday showing all log entries.
0.2.0
- Log plugin and login events.
0.1.0
- Initial release.
