The Pragma Module for handling models changelogs in Pragma Framework

1.11.0 2023-10-12 12:05 UTC

This package is auto-updated.

Last update: 2024-04-12 13:14:44 UTC


README

The Pragma Module for handling models changelogs in Pragma Framework.

Installation

In composer.json add:

require {"pragma-framework/historic": "dev-master"}

Howto use with Pragma/Model classes

In Model, add use Historisable; and in Model::___construct $this->set_historised(true);

In Model::delete() add this->set_global_name($this->field) (DEPRECATED)

In Model::__construct add $this->set_global_name_fields(['field']);

What about created_at and created_by

These columns should be handled by within the PRAGMA_HISTORIC_CREATION_HOOK constant (in the config.php)

CLI Route

Route used to empty all or part of the history

php public/index.php historic:clean [-d|--days=] [-s|--skip-confirm]

Options

-d --days

Number of days of history to keep

-s --skip-confirm

Skip confirmation (useful with crons)