PHP Classes

File: guide/ordit/index.md

Recommend this page to a friend!
  Classes of Stefan Jibrail Froelich   Ordit Kohana ORM Audit   guide/ordit/index.md   Download  
File: guide/ordit/index.md
Role: Documentation
Content type: text/plain
Description: Documentation
Class: Ordit Kohana ORM Audit
Track calls to Kohana framework ORM classes
Author: By
Last change: Update of guide/ordit/index.md
Date: 2 months ago
Size: 506 bytes
 

Contents

Class file image Download
# Ordit Ordit is a Kohana 3.x module that adds automatic auditing to the Official ORM module. Ordit is a transparent extension that audits all CUD actions on your objects. It includes a Log Viewer to view all Audit logs. ## Getting started Before we use Ordit, we must enable the modules required Kohana::modules(array( ... 'database' => MODPATH.'database', 'orm' => MODPATH.'orm', 'ordit' => MODPATH.'ordit', ... )); [!!] Ordit requires the ORM module (plus its dependencies) to work.