Skip to content
Snippets Groups Projects
Select Git revision
  • 47cd4913166e156148012d2de75d6f276b2dfc02
  • master default
  • next_version
  • laurent-change.log
  • Documentation_homogeneisation
  • HEAD
  • 2021.02.02
  • 2021.02.01
  • 2021.02.00
  • 2021.01.00
  • 2020.02.02
  • 2020.02.01
  • 2020.02.00
  • 2020.01.05
  • 2020.01.04
  • 2020.01.03
  • 2020.01.02
  • 2020.01.01
  • 2020.01.00
  • 2019.03.00
  • 2019.02.07
  • 2019.02.06
  • 2019.02.05
  • 2019.02.04
  • 2019.02.03
  • 2019.02.02
26 results

MapServerDebugLevel.class.inc

Blame
  • MapServerDebugLevel.class.inc 1.31 KiB
    <?php
    
    require_once 'Vmap4MapServer.class.inc';
    require_once dirname($_SERVER['SCRIPT_FILENAME']) . '/class/vitis_lib/Connection.class.inc';
    
    /**
     * \file MapServerDebugLevel.class.inc
     * \class MapServerDebugLevel
     *
     * \author Yoann Perollet <yoann.perollet@veremes.com>.
     *
     * 	\brief This file contains the MapServerDebugLevel php class
     *
     * This class defines operation for one MapServerDebugLevel
     * 
     */
    class MapServerDebugLevel extends Vmap4MapServer {
    
        public $oError;
    
        /**
         * construct
         * @param type $aPath url of the request
         * @param type $aValues parameters of the request
         * @param type $properties properties
         * @param type $bShortcut false to reinit variables
         * @param type $oConnection connection object
         */
        function __construct($aPath, $aValues, $properties, $bShortcut = false, $oConnection = false) {
            parent::__construct($aPath, $aValues, $properties, $bShortcut, $oConnection);
            $this->aSelectedFields = Array('msdebuglevel_id', 'label_id', 'translation');
        }
    
        /**
         * get informations about mapserverdebuglevel
         */
        function GET() {
            require $this->sRessourcesFile;
            $this->aFields = $this->getFields($this->aProperties['schema_vm4ms'], "v_msdebuglevel", "msdebuglevel_id");
        }
    
    }
    
    ?>