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

📄 sections_data.php

📁 太烦了
💻 PHP
字号:
<?php   class sectionsData extends Data {      var $table = SECTIONS_TABLE;      var $config = array (  'table' => SECTIONS_TABLE,  'idField' => 'osdate_sections_id',  'addedMsg' => 'Osdate Sections %s Added',  'added_err' => 'Can\\\'t Add Osdate Sections',  'editMsg' => 'Osdate Sections %s Updated',  'editErr' => 'Can\\\'t Update Osdate Sections',  'delErr' => 'Can\\\'t Delete Osdate Sections',  'delMsg' => 'Osdate Sections %s Deleted',  'blankErr' => 'Osdate Sections Empty',  'fields' =>   array (    'id' =>     array (      'name' => 'id',      'description' => 'Id',      'type' => 'number',      'min_len' => 0,      'max_len' => 8,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),    'section' =>     array (      'name' => 'section',      'description' => 'Section',      'type' => 'text',      'min_len' => 0,      'max_len' => 255,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),    'displayorder' =>     array (      'name' => 'displayorder',      'description' => 'Displayorder',      'type' => 'number',      'min_len' => 0,      'max_len' => 2,      '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,    ),  ),);         function sectionsData() {               $this->Data($this->config);      }   }?>

⌨️ 快捷键说明

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