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

📄 transactions_data.php

📁 太烦了
💻 PHP
字号:
<?php   class transactionsData extends Data {      var $table = TRANSACTIONS_TABLE;      var $config = array (  'table' => TRANSACTIONS_TABLE,  'idField' => 'id',  'addedMsg' => 'Osdate Transactions %s Added',  'added_err' => 'Can\\\'t Add Osdate Transactions',  'editMsg' => 'Osdate Transactions %s Updated',  'editErr' => 'Can\\\'t Update Osdate Transactions',  'delErr' => 'Can\\\'t Delete Osdate Transactions',  'delMsg' => 'Osdate Transactions %s Deleted',  'blankErr' => 'Osdate Transactions Empty',  'fields' =>   array (    'invoice_no' =>     array (      'name' => 'invoice_no',      'description' => 'Invoice No',      'type' => 'text',      'min_len' => 0,      'max_len' => 100,      'blank_ok' => 1,      'duplicate_ok' => 1,    ),    'user_id' =>     array (      'name' => 'user_id',      'description' => 'User Id',      'type' => 'number',      'min_len' => 0,      'max_len' => 11,      'blank_ok' => 1,      'duplicate_ok' => 1,    ),    'txn_id' =>     array (      'name' => 'txn_id',      'description' => 'Txn Id',      'type' => 'text',      'min_len' => 0,      'max_len' => 254,      'blank_ok' => 1,      'duplicate_ok' => 1,    ),    'payment_email' =>     array (      'name' => 'payment_email',      'description' => 'Payment Email',      'type' => 'text',      'min_len' => 0,      'max_len' => 100,      'blank_ok' => 1,      'duplicate_ok' => 1,    ),    'from_membership' =>     array (      'name' => 'from_membership',      'description' => 'From Membership',      'type' => 'number',      'min_len' => 0,      'max_len' => 4,      'blank_ok' => 1,      'duplicate_ok' => 1,    ),    'to_membership' =>     array (      'name' => 'to_membership',      'description' => 'To Membership',      'type' => 'number',      'min_len' => 0,      'max_len' => 4,      'blank_ok' => 1,      'duplicate_ok' => 1,    ),    'amount_paid' =>     array (      'name' => 'amount_paid',      'description' => 'Amount Paid',      'type' => 'amount',      'min_len' => 0,      'max_len' => 22,      'blank_ok' => 1,      'duplicate_ok' => 1,    ),    'txn_date' =>     array (      'name' => 'txn_date',      'description' => 'Txn Date',      'type' => 'date',      'min_len' => 0,      'max_len' => 10,      'blank_ok' => 1,      'duplicate_ok' => 1,    ),    'payment_mod' =>     array (      'name' => 'payment_mod',      'description' => 'Payment Mod',      'type' => 'text',      'min_len' => 0,      'max_len' => 100,      'blank_ok' => 1,      'duplicate_ok' => 1,    ),    'payment_status' =>     array (      'name' => 'payment_status',      'description' => 'Payment Status',      'type' => 'text',      'min_len' => 0,      'max_len' => 100,      'blank_ok' => 1,      'duplicate_ok' => 1,    ),    'payment_vars' =>     array (      'name' => 'payment_vars',      'description' => 'Payment Vars',      'type' => 'text',      'min_len' => 0,      'max_len' => 65535,      'blank_ok' => 1,      'duplicate_ok' => 1,    ),  ),);         function transactionsData() {               $this->Data($this->config);      }   }?>

⌨️ 快捷键说明

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