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

📄 polls_data.php

📁 太烦了
💻 PHP
字号:
<?php   class pollsData extends Data {      var $table = POLLS_TABLE;      var $config = array (  'table' => POLLS_TABLE,  'idField' => 'pollid',  'addedMsg' => 'Osdate Polls %s Added',  'added_err' => 'Can\\\'t Add Osdate Polls',  'editMsg' => 'Osdate Polls %s Updated',  'editErr' => 'Can\\\'t Update Osdate Polls',  'delErr' => 'Can\\\'t Delete Osdate Polls',  'delMsg' => 'Osdate Polls %s Deleted',  'blankErr' => 'Osdate Polls Empty',  'fields' =>   array (    'question' =>     array (      'name' => 'question',      'description' => 'Question',      'type' => 'text',      'min_len' => 0,      'max_len' => 255,      'blank_ok' => 1,      'duplicate_ok' => 1,    ),    'date' =>     array (      'name' => 'date',      'description' => 'Date',      'type' => 'number',      'min_len' => 0,      'max_len' => 11,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),    'enabled' =>     array (      'name' => 'enabled',      'description' => 'Enabled',      'type' => 'text',      'min_len' => 0,      'max_len' => 1,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),    'active' =>     array (      'name' => 'active',      'description' => 'Active',      'type' => 'number',      'min_len' => 0,      'max_len' => 1,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),    'options' =>     array (      'name' => 'options',      'description' => 'Options',      'type' => 'text',      'min_len' => 0,      'max_len' => 255,      'blank_ok' => 1,      'duplicate_ok' => 1,    ),    'suggested_by' =>     array (      'name' => 'suggested_by',      'description' => 'Suggested By',      'type' => 'number',      'min_len' => 0,      'max_len' => 11,      'blank_ok' => 1,      'duplicate_ok' => 1,    ),  ),);         function pollsData() {               $this->Data($this->config);      }   }?>

⌨️ 快捷键说明

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