📄 usersnaps_data.php
字号:
<?php class userSnapsData extends Data { var $table = USER_SNAP_TABLE; var $config = array ( 'table' => USER_SNAP_TABLE, 'idField' => 'id', 'addedMsg' => 'Osdate Usersnaps %s Added', 'added_err' => 'Can\\\'t Add Osdate Usersnaps', 'editMsg' => 'Osdate Usersnaps %s Updated', 'editErr' => 'Can\\\'t Update Osdate Usersnaps', 'delErr' => 'Can\\\'t Delete Osdate Usersnaps', 'delMsg' => 'Osdate Usersnaps %s Deleted', 'blankErr' => 'Osdate Usersnaps Empty', 'fields' => array ( 'userid' => array ( 'name' => 'userid', 'description' => 'Userid', 'type' => 'number', 'min_len' => 0, 'max_len' => 11, 'blank_ok' => 0, 'duplicate_ok' => 1, ), 'picno' => array ( 'name' => 'picno', 'description' => 'Picno', 'type' => 'number', 'min_len' => 0, 'max_len' => 11, 'blank_ok' => 0, 'duplicate_ok' => 1, ), 'picture' => array ( 'name' => 'picture', 'description' => 'Picture', 'type' => 'text', 'min_len' => 0, 'max_len' => 16777215, 'blank_ok' => 0, 'duplicate_ok' => 1, ), 'tnpicture' => array ( 'name' => 'tnpicture', 'description' => 'Tnpicture', 'type' => 'text', 'min_len' => 0, 'max_len' => 65535, 'blank_ok' => 0, 'duplicate_ok' => 1, ), 'ins_time' => array ( 'name' => 'ins_time', 'description' => 'Ins Time', 'type' => 'number', 'min_len' => 0, 'max_len' => 11, 'blank_ok' => 1, 'duplicate_ok' => 1, ), 'active' => array ( 'name' => 'active', 'description' => 'Active', 'type' => 'text', 'min_len' => 0, 'max_len' => 1, 'blank_ok' => 0, 'duplicate_ok' => 1, ), 'picext' => array ( 'name' => 'picext', 'description' => 'Picext', 'type' => 'text', 'min_len' => 0, 'max_len' => 10, 'blank_ok' => 0, 'duplicate_ok' => 1, ), 'tnext' => array ( 'name' => 'tnext', 'description' => 'Tnext', 'type' => 'text', 'min_len' => 0, 'max_len' => 10, 'blank_ok' => 0, 'duplicate_ok' => 1, ), 'album_id' => array ( 'name' => 'album_id', 'description' => 'Album Id', 'type' => 'number', 'min_len' => 0, 'max_len' => 11, 'blank_ok' => 1, 'duplicate_ok' => 1, ), ),); function userSnapsData() { $this->Data($this->config); } }?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -