mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2026-01-25 05:22:53 -05:00
BpNode: rename url to infoUrl
This commit is contained in:
parent
91dc292241
commit
2001b2445e
1 changed files with 8 additions and 7 deletions
|
|
@ -57,16 +57,22 @@ class BpNode extends Node
|
|||
return $this->operator;
|
||||
}
|
||||
|
||||
public function setUrl($url)
|
||||
public function setInfoUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function hasUrl()
|
||||
public function hasInfoUrl()
|
||||
{
|
||||
return $this->url !== null;
|
||||
}
|
||||
|
||||
public function getInfoUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
|
||||
public function setInfoCommand($cmd)
|
||||
{
|
||||
$this->info_command = $cmd;
|
||||
|
|
@ -77,11 +83,6 @@ class BpNode extends Node
|
|||
return $this->info_command !== null;
|
||||
}
|
||||
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
|
||||
public function getInfoCommand()
|
||||
{
|
||||
return $this->info_command;
|
||||
|
|
|
|||
Loading…
Reference in a new issue