Development

Changeset 6986

You must first sign up to be able to contribute.

Changeset 6986

Show
Ignore:
Timestamp:
01/07/08 20:06:46 (5 years ago)
Author:
Josh.Reynolds
Message:

added a method to the client to get the server URL that it is currently using

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfMDB2RestPlugin/trunk/lib/MDB2RestClient.class.php

    r5672 r6986  
    108108    $results = ob_get_contents(); 
    109109    ob_end_clean(); 
    110  
     110     
    111111    return unserialize($results); 
    112112  } 
     
    190190  { 
    191191    return $this->execute(__FUNCTION__, get_defined_vars()); 
     192  } 
     193   
     194  public function getServerUrl() 
     195  { 
     196    return $this->serverUrl; 
    192197  } 
    193198