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

📄 userrating_data.php

📁 太烦了
💻 PHP
字号:
<?php   class userRatingData extends Data {      var $table = USER_RATING_TABLE;      var $config = array (  'table' => USER_RATING_TABLE,  'idField' => 'id',  'addedMsg' => 'Osdate Userrating %s Added',  'added_err' => 'Can\\\'t Add Osdate Userrating',  'editMsg' => 'Osdate Userrating %s Updated',  'editErr' => 'Can\\\'t Update Osdate Userrating',  'delErr' => 'Can\\\'t Delete Osdate Userrating',  'delMsg' => 'Osdate Userrating %s Deleted',  'blankErr' => 'Osdate Userrating Empty',  'fields' =>   array (    'userid' =>     array (      'name' => 'userid',      'description' => 'Userid',      'type' => 'number',      'min_len' => 0,      'max_len' => 11,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),    'profileid' =>     array (      'name' => 'profileid',      'description' => 'Profileid',      'type' => 'number',      'min_len' => 0,      'max_len' => 11,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),    'rating' =>     array (      'name' => 'rating',      'description' => 'Rating',      'type' => 'number',      'min_len' => 0,      'max_len' => 11,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),    'rate_time' =>     array (      'name' => 'rate_time',      'description' => 'Rate Time',      'type' => 'number',      'min_len' => 0,      'max_len' => 32,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),    'ratingid' =>     array (      'name' => 'ratingid',      'description' => 'Ratingid',      'type' => 'number',      'min_len' => 0,      'max_len' => 11,      'blank_ok' => 1,      'duplicate_ok' => 1,    ),    'comment' =>     array (      'name' => 'comment',      'description' => 'Comment',      'type' => 'text',      'min_len' => 0,      'max_len' => 250,      'blank_ok' => 1,      'duplicate_ok' => 1,    ),    'reply' =>     array (      'name' => 'reply',      'description' => 'Reply',      'type' => 'text',      'min_len' => 0,      'max_len' => 250,      'blank_ok' => 1,      'duplicate_ok' => 1,    ),    'comment_date' =>     array (      'name' => 'comment_date',      'description' => 'Comment Date',      'type' => 'date',      'min_len' => 0,      'max_len' => 10,      'blank_ok' => 1,      'duplicate_ok' => 1,    ),    'rating_date' =>     array (      'name' => 'rating_date',      'description' => 'Rating Date',      'type' => 'date',      'min_len' => 0,      'max_len' => 10,      'blank_ok' => 1,      'duplicate_ok' => 1,    ),  ),);         function userRatingData() {               $this->Data($this->config);      }   }?>

⌨️ 快捷键说明

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