Exemplo n.º 1
0
 public function __construct($backend_id, $hostName, $serviceDescription)
 {
     $this->backend_id = array($backend_id[0]);
     // only supports one backend
     $this->host_name = $hostName;
     $this->service_description = $serviceDescription;
     parent::__construct();
 }
Exemplo n.º 2
0
 public function __construct($MAPCFG, $bIsView = IS_VIEW)
 {
     $this->MAPCFG = $MAPCFG;
     $this->map_name = $this->MAPCFG->getName();
     $this->linkedMaps = array();
     $this->isSummaryObject = false;
     $this->isLoopingBacklink = false;
     $this->isView = $bIsView;
     $this->clearMembers();
     $this->backend_id = $this->MAPCFG->getValue(0, 'backend_id');
     if ($this->backend_id === false) {
         $this->backend_id = array();
     }
     parent::__construct();
     $this->state[ALIAS] = $this->MAPCFG->getAlias();
 }
Exemplo n.º 3
0
 public function __construct($backend_id, $hostName)
 {
     $this->backend_id = $backend_id;
     $this->host_name = $hostName;
     parent::__construct();
 }
Exemplo n.º 4
0
 public function __construct($backend_id, $servicegroupName)
 {
     $this->backend_id = $backend_id;
     $this->servicegroup_name = $servicegroupName;
     parent::__construct();
 }