Net_SMPP
[ class tree: Net_SMPP ] [ index: Net_SMPP ] [ all elements ]

Source for file deliver_sm.php

Documentation is available at deliver_sm.php

  1. <?php
  2. /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
  3.  
  4. /**
  5.  * MIG deliver_sm command class
  6.  *
  7.  * PHP versions 4 and 5
  8.  *
  9.  */
  10.  
  11. // Place includes, constant defines and $_GLOBAL settings here.
  12. require_once 'Net/SMPP/Command/deliver_sm.php';
  13.  
  14.  
  15. class Net_SMPP_Command_Vendor_MIG_deliver_sm extends Net_SMPP_Command_deliver_sm {
  16.  
  17.     /**
  18.      * The vendor this class belongs to
  19.      *
  20.      * @var  string 
  21.      */
  22.     var $vendor 'MIG';
  23.  
  24.  
  25.  
  26.     // Vendor-specific TLVs
  27.  
  28.  
  29.  
  30.     var $MIG_operator;
  31.     var $MIG_guid;
  32.     var $MIG_tariff;
  33.     var $MIG_tariff_class;
  34.     var $MIG_operator_country;
  35.     var $MIG_operator_network;
  36.     var $MIG_User_ID;
  37.     var $MIG_Subscription;
  38.     var $MIG_Billing_Text;
  39.  
  40.  
  41.  
  42.     /**
  43.      * Vendor definitions
  44.      *
  45.      * @var     array 
  46.      * @access  protected
  47.      */
  48.     var $_vdefs = array(
  49.         'MIG_operator' => array(
  50.             'type' => 'ostring',
  51.             'max' => 10
  52.         ),
  53.         'MIG_guid' => array(
  54.             'type' => 'ostring',
  55.             'size' => 50
  56.         )
  57.     );
  58. }

Documentation generated on Mon, 11 Mar 2019 15:37:29 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.