Xataface

回覆文章
yehlu
Site Admin
文章: 3245
註冊時間: 2004-04-15 17:20:21
來自: CodeCharge Support Engineer

Xataface

文章 yehlu »

yehlu
Site Admin
文章: 3245
註冊時間: 2004-04-15 17:20:21
來自: CodeCharge Support Engineer

預設值的做法

文章 yehlu »

tables/table_name/fields.ini

代碼: 選擇全部

[mod_stamp]
    widget:type=hidden
    timestamp=update

[mod_users]
     widget:type=hidden
     validators:required=0
資料庫欄位也需設為 NULL 才可以

tables/table_name/table_name.php

代碼: 選擇全部

<?php
class tables_acc_type{
    function beforeInsert(&$cecord){
         $record->setValue('key_users', $_SESSION['UserID']);
         $record->setValue('key_stamp', now());
    }
    function beforeSave(&$record){
         $record->setValue('mod_users', $_SESSION['UserID']);
    }
}
?>

回覆文章

回到「PHP」