⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 user_actions_data.php

📁 太烦了
💻 PHP
字号:
<?php   class userActionsData extends Data {      var $table = USER_ACTIONS;      var $config = array (  'table' => USER_ACTIONS,  'idField' => 'id',  'addedMsg' => 'Osdate User Action %s Added',  'added_err' => 'Can\\\'t Add Osdate User Actions',  'editMsg' => 'Osdate User Actions %s Updated',  'editErr' => 'Can\\\'t Update Osdate User Actions',  'delErr' => 'Can\\\'t Delete Osdate User Actions',  'delMsg' => 'Osdate User Actions %s Deleted',  'blankErr' => 'Osdate User Actions Empty',  'fields' =>  array (    'userid' =>    array (      'name' => 'userid',      'description' => 'Userid',      'type' => 'number',      'min_len' => 0,      'max_len' => 11,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),    'act_date' =>    array (      'name' => 'act_date',      'description' => 'Action Date',      'type' => 'date',      'min_len' => 0,      'max_len' => 10,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),    'act_type' =>    array (      'name' => 'act_type',      'description' => 'Action Type',      'type' => 'text',      'min_len' => 0,      'max_len' => 1,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),    'act_cnt' =>    array (      'name' => 'act_cnt',      'description' => 'Action Count',      'type' => 'number',      'min_len' => 0,      'max_len' => 11,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),  ),);      function userActionsData() {         $this->Data($this->config);      }   }?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -