项目作者: firoz-ahmad-likhon

项目描述 :
CodeIgniter audit trail is a convenient way to track all users activities in the database.
高级语言: PHP
项目地址: git://github.com/firoz-ahmad-likhon/codeigniter-audit-trail.git
创建时间: 2018-09-29T15:44:14Z
项目社区:https://github.com/firoz-ahmad-likhon/codeigniter-audit-trail

开源协议:MIT License

下载


User Audit Trail

It is an attempt to add user audit trail with CodeIgniter framework. I think it is a very convenient way to track user activities in the database.

Installation

  • Put all files into your projects directory respectively.
  • Check config.php for $config[‘subclassprefix’] this value. If it is not ‘MY then rename MY_DB_mysqli_driver.php and MY_Loader.php to your value.
  • To enable listening change set $config[‘audit_enable’] = TRUE in config/the trail.php
  • You can start/stop to record insert, update, delete. please read carefully the trail.php

Now you are ready to browse the application.

Database Table

  • Run the sql in your database.
  1. CREATE TABLE `user_audit_trails` (
  2. `id` int(11) NOT NULL,
  3. `user_id` int(11) NOT NULL,
  4. `event` enum('insert','update','delete') NOT NULL,
  5. `table_name` varchar(128) NOT NULL,
  6. `old_values` text,
  7. `new_values` text NOT NULL,
  8. `url` varchar(255) NOT NULL,
  9. `name` varchar(128) NOT NULL,
  10. `ip_address` varchar(45) NOT NULL,
  11. `user_agent` varchar(255) NOT NULL,
  12. `created_at` timestamp NULL DEFAULT NULL
  13. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  14. ALTER TABLE `user_audit_trails`
  15. ADD PRIMARY KEY (`id`);
  16. ALTER TABLE `user_audit_trails`
  17. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
  18. COMMIT;

Further Work

Now it is your turn to make model and view for presenting the audit data. Happy coding..