Source for file FeatureServerGetCapabilityProxy.php

Documentation is available at FeatureServerGetCapabilityProxy.php

  1. <?php
  2. /**
  3. * Class Proxy feature server quant la requete est de type getCapability
  4. *
  5. * PHP versions 5
  6. @category  PHP
  7. @package   GeoPrisma
  8. @author    Pascal Martin
  9. @copyright 2009, Boreal - Information Strategies
  10. @license   http://www.geoprisma.org/license BSD License
  11. @link      http://www.geoprisma.org
  12. */
  13.  
  14. /**
  15. * Class Proxy feature server quant la requete est de type getCapability
  16. @category   PHP
  17. @package    GeoPrisma
  18. @subpackage Proxy
  19. @author     Pascal Martin
  20. */ 
  21. {
  22.     /**
  23.     * Foward the call end return the result
  24.     * 
  25.     * @return void 
  26.     */
  27.     public function process()
  28.     {
  29.         $objCurl curl_init($this->addParam($this->getService()->getSource()));                 
  30.         curl_exec($objCurl);
  31.         curl_close($objCurl)
  32.     }
  33.     
  34.     /**
  35.     * Retourne le nom de l'action rĂ©aliser par le proxy (Create - Read - Update - Delete)
  36.     *                                   
  37.     * @return string 
  38.     */
  39.     public function getAction()
  40.     {
  41.         return self::CRUD_READ;    
  42.     }
  43. }
  44.  
  45. ?>

Documentation generated on Mon, 20 Feb 2012 13:46:12 -0500 by phpDocumentor 1.4.1