PHP Classes

File: data/rules.php

Recommend this page to a friend!
  Classes of Roman Kozin   PHP SMSC.ua Message Sender   data/rules.php   Download  
File: data/rules.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP SMSC.ua Message Sender
Send SMS, MMS, EMail, Viber, Voicemail with SMSC
Author: By
Last change:
Date: 7 years ago
Size: 972 bytes
 

Contents

Class file image Download
<?php

/**
 * Rules file for sending SMS/MMS etc.
 */

return [
   
'sms' => [
       
'allowed_arguments' => [
           
'id', 'translit', 'sender', 'tinyurl', 'time', 'tz',
           
'period', 'freq', 'flash', 'bin', 'push', 'hlr',
           
'ping', 'mms', 'mail', 'viber', 'call', 'voice',
           
'param', 'subj', 'charset', 'cost', 'fmt', 'list',
           
'valid', 'maxsms', 'imgcode', 'userip', 'err', 'op',
           
'pp', 'login', 'psw', 'phones', 'mes', 'fmt'
       
]
    ],
   
'mms' => [
       
'allowed_arguments' => [
           
'login', 'psw', 'phones', 'mes', 'fmt'
       
]
    ],
   
'email' => [
       
'allowed_arguments' => [
           
'login', 'psw', 'phones', 'mes', 'fmt'
       
]
    ],
   
'voice' => [
       
'allowed_arguments' => [
           
'login', 'psw', 'phones', 'mes', 'fmt'
       
]
    ],
   
'viber' => [
       
'allowed_arguments' => [
           
'login', 'psw', 'phones', 'mes', 'fmt'
       
]
    ]
];