add empik module

This commit is contained in:
2025-05-30 09:08:26 +02:00
parent 87a41f4cfc
commit 56aa2cdc2d
1466 changed files with 138249 additions and 146 deletions

View File

@@ -0,0 +1,30 @@
<?php
class EmpikActionLog extends ObjectModel
{
public $id_empik_action;
public $message;
public $date_add;
public static $definition = [
'table' => 'empik_action',
'primary' => 'id_empik_action_log',
'fields' => [
'id_empik_action' => [
'type' => self::TYPE_INT,
'validate' => 'isUnsignedInt',
'required' => true,
],
'message' => [
'type' => self::TYPE_STRING,
'validate' => 'isCleanHtml',
],
'date_add' => [
'type' => self::TYPE_DATE,
'validate' => 'isDate',
'required' => true,
],
],
];
}