tuupola / frog_dashboard

Provides simple admin dashboard to Frog CMS.

This URL has Read+Write access

tuupola (author)
Thu Aug 13 00:33:13 -0700 2009
commit  4a3ed7470bbb2aba4f0a0e96516334eebaa21cf6
tree    6afb4849495532d6febb79bf9ed3b2fe89a2ed47
parent  575862c19e678cc77cfad9955fab7cd50faed5a6
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.