DiverseYouthNightSchool/application/admin/command/Crud/stubs/mixins/modelinit.stub

11 lines
288 B
Plaintext
Raw Normal View History

2024-11-04 10:49:10 +08:00
protected static function init()
{
self::afterInsert(function ($row) {
if (!$row['{%order%}']) {
$pk = $row->getPk();
$row->getQuery()->where($pk, $row[$pk])->update(['{%order%}' => $row[$pk]]);
}
});
}