<?php


    $_table = 'module_dotpay';

    if(file_exists('_modules/dotpay/l18n/'.$cfg['admin']['language'].'.php')) {
        require_once('_modules/dotpay/l18n/'.$cfg['admin']['language'].'.php');
    }

    $table_config = array(
        'table' => 'module_dotpay',
        'multiSelect' => true,    
        'idField'=>'modDotId',
    );
    $table_fields = array(
        'modDotDotpayID' => array(
            'type' => 'text',
            'length' => 20,
            'size' => 100,
        ),               
        'modDotSMSService' => array(
            'type' => 'text',
            'length' => 10,
            'size' => 80,
            'arrayField' => 'SMSServices'
        ),   
        'modDotSMSIdent' => array(
            'type' => 'text',
            'length' => 10,
            'size' => 100,
            'arrayField' => 'SMSServices'           
        ),  
        'modDotSMSNumber' => array(
            'type' => 'text',
            'length' => 10,
            'size' => 80,
            'arrayField' => 'SMSServices'           
        ),             
        'modDotSMSScript' => array(
            'type' => 'text',
            'length' => 100,
            'size' => 200,
            'arrayField' => 'SMSServices'           
        ),
        'modDotSMSScriptVars' => array(
            'type' => 'keyvalue_ro',
            'arrayField' => 'SMSServices'              
        ),
        'modDotSMSServices' => array(      
            'type' => 'array_fields', 
            'fields' => array('modDotSMSService', 'modDotSMSIdent', 'modDotSMSNumber', 'modDotSMSScript', 'modDotSMSScriptVars'),       
        ), 
      
                                                     
                
                       
                
    );
    




     

?>
