Skip to content

Commit

Permalink
Clean up of documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Sammaye committed Jul 10, 2013
1 parent 895acc6 commit 6ee0c4b
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,17 +118,13 @@ As you will notice I allow the `ns_purchase_description` field but also ignore i

This is useful if you put the behaviour in a class that extends CActiveRecord which all your own models extend from. This is useful in cases where you want ALL your classes to share the same core (like this behaviour) without having to specify it in every model you create.

'LoggableBehavior'=> array(
'LoggableBehavior'=> array(
'class' => 'site.backend.extensions.modules.auditTrail.behaviors.LoggableBehavior',
'ignored_class' => array(
'ErrorLog', // I use this to log error messages to MYSQL, no need to keep a log of this
),

)
'ignored_class' => array(
'ErrorLog', // I use this to log error messages to MYSQL, no need to keep a log of this
),
)




## Printing out the audit log

Since this no longer uses a module to do its work there is no global configuration for the previously inbuilt audit log to work from. Instead you can insert an audit log
Expand Down

0 comments on commit 6ee0c4b

Please sign in to comment.