1 頁 (共 1 頁)

Xataface

發表於 : 2012-01-17 10:52:45
yehlu

預設值的做法

發表於 : 2012-01-17 11:30:35
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']);
    }
}
?>