📄 blog_vote_data.php
字号:
<?php class blog_voteData extends Data { var $table = BLOG_VOTE_TABLE; var $config = array ( 'table' => BLOG_VOTE_TABLE, 'idField' => 'osdate_blog_vote_id', 'addedMsg' => 'Osdate Blog Vote %s Added', 'added_err' => 'Can\\\'t Add Osdate Blog Vote', 'editMsg' => 'Osdate Blog Vote %s Updated', 'editErr' => 'Can\\\'t Update Osdate Blog Vote', 'delErr' => 'Can\\\'t Delete Osdate Blog Vote', 'delMsg' => 'Osdate Blog Vote %s Deleted', 'blankErr' => 'Osdate Blog Vote Empty', 'fields' => array ( 'id' => array ( 'name' => 'id', 'description' => 'Id', 'type' => 'number', 'min_len' => 0, 'max_len' => 11, 'blank_ok' => 0, 'duplicate_ok' => 1, ), 'storyid' => array ( 'name' => 'storyid', 'description' => 'Storyid', 'type' => 'number', 'min_len' => 0, 'max_len' => 11, 'blank_ok' => 0, 'duplicate_ok' => 1, ), 'userid' => array ( 'name' => 'userid', 'description' => 'Userid', 'type' => 'number', 'min_len' => 0, 'max_len' => 11, 'blank_ok' => 0, 'duplicate_ok' => 1, ), 'adminid' => array ( 'name' => 'adminid', 'description' => 'Adminid', 'type' => 'number', 'min_len' => 0, 'max_len' => 11, 'blank_ok' => 0, 'duplicate_ok' => 1, ), 'vote' => array ( 'name' => 'vote', 'description' => 'Vote', 'type' => 'number', 'min_len' => 0, 'max_len' => 11, 'blank_ok' => 0, 'duplicate_ok' => 1, ), ),); function blog_voteData() { $this->Data($this->config); } }?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -