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

📄 payment_modules_data.php

📁 太烦了
💻 PHP
字号:
<?php   class paymentModulesData extends Data {      var $table = PAYMENT_MODULE_TABLE;      var $config = array (  'table' => PAYMENT_MODULE_TABLE,  'idField' => 'id',  'addedMsg' => 'Osdate Payment Modules %s Added',  'added_err' => 'Can\\\'t Add Osdate Payment Modules',  'editMsg' => 'Osdate Payment Modules %s Updated',  'editErr' => 'Can\\\'t Update Osdate Payment Modules',  'delErr' => 'Can\\\'t Delete Osdate Payment Modules',  'delMsg' => 'Osdate Payment Modules %s Deleted',  'blankErr' => 'Osdate Payment Modules Empty',  'fields' =>   array (    'name' =>     array (      'name' => 'name',      'description' => 'Name',      'type' => 'text',      'min_len' => 0,      'max_len' => 255,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),    'module_key' =>     array (      'name' => 'module_key',      'description' => 'Module Key',      'type' => 'text',      'min_len' => 0,      'max_len' => 255,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),    'class_file' =>     array (      'name' => 'class_file',      'description' => 'Class File',      'type' => 'text',      'min_len' => 0,      'max_len' => 255,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),    'formfile' =>     array (      'name' => 'formfile',      'description' => 'Formfile',      'type' => 'text',      'min_len' => 0,      'max_len' => 255,      '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 paymentModulesData() {               $this->Data($this->config);      }   }?>

⌨️ 快捷键说明

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