sections_data.php

来自「太烦了」· PHP 代码 · 共 69 行

PHP
69
字号
<?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 + =
减小字号Ctrl + -
显示快捷键?