#實體化 類別物件
$stopLevel = 2; //層數
#(模組名稱,關鍵字,層數)
$kindKey = "kind_prod";
$ugmKind = new ugmKind($module_name,$kindKey,$stopLevel);
# 如果資料表非預設 請自行設定
```
2. 執行動作判斷區,除了$op、$sn外還有 $kind
只要是外部傳入的變數,都要過濾 ```
$kind = system_CleanVars($_REQUEST, 'kind', '', 'int');
```
### 三、程式流程架構
1. 流程架構 ```
switch ($op) {
// case "xxx":
// xxx();
// redirect_header($_SESSION['return_url'], 3, _BP_SUCCESS);
// exit;
default:
# ---- 目前網址 ----
$_SESSION['return_url'] = getCurrentUrl();
$op = "opList";
opList();
break;
}
```
2. CRUD:新增、讀取、編輯、刪除