Skip to content

julpi/freshcms_dashboard

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Changelog

0.4.0

  • Fix install problem when system had PDO disable (aeischeid).
  • General code cleanup.
  • Limit displaying entries to last 3 months

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.

About

Provides simple admin dashboard to Frog CMS.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%