# wolf_dashboard **Repository Path**: mirrors_tuupola/wolf_dashboard ## Basic Information - **Project Name**: wolf_dashboard - **Description**: Provides simple admin dashboard to Wolf CMS. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2026-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README h3. New maintainer I do not maintain this code anymore. Latest version can be found at "https://github.com/mvdkleijn/dashboard":https://github.com/mvdkleijn/dashboard. h3. Changelog h4. 0.5.0 * Plugin is now compatible with Wolf CMS 0.7.x (mvdkleijn) * Dutch translation by Samuel van Laere. * Hebrew translation by Eyal Berman. * German translation by Sebastian Joseph. h4. 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);
h4. 0.3.1
* Use :username instead of [username] for custom logging.
h4. 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 _dashboard_log
ADD COLUMN username VARCHAR(64)
AFTER message;
h4. 0.2.1
* Use pretty date in dates. Show real date as tooltip.
* Fix problem of _before yesterday_ showing all log entries.
h4. 0.2.0
* Log plugin and login events.
h4. 0.1.0
* Initial release.