pedro_morgan
2007-08-17 36b605af9327e1d149350f8ac99a62034c781cd9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
 
/* This is a conceptual stlye code for feedback and work in progress
   Please hack
*/
 
class ISPConfigClient
{
 
    public function __construct($db_connection = null){
    
    }
 
    //*  Get Reseller List
    public function reseller_get_list(){
        
        $params = array (    'sid'       => $session_id,
                            'module'    => 'reseller',
                            'function'    => 'reseller_list',
                                'params'    => ''
                         );
    }
    
    public function reseller($ID){
        // Get Reseller
        $params = array (    'sid'        => $session_id,
                            'module'     => 'reseller',
                            'function'   => 'reseller_get',
                            'params'     => array ( reseller_title => "Reseller1"));
            }
    }
 
}
 
?>