Commit d8d5acce authored by zhub admin's avatar zhub admin

Merge pull request #1 in ZO/z-push from...

Merge pull request #1 in ZO/z-push from feature/ZO-4-z-push-methods-to-detect-if-ol-is-connected to develop

* commit '960a4a7b':
  ZO-4 Added DeviceManager->IsOutlookClient().
parents ec5b650b 960a4a7b
...@@ -638,6 +638,19 @@ class DeviceManager { ...@@ -638,6 +638,19 @@ class DeviceManager {
return $this->loopdetection->ProcessLoopDetectionIsHierarchyResyncRequired(); return $this->loopdetection->ProcessLoopDetectionIsHierarchyResyncRequired();
} }
/**
* Indicates if an Outlook via ActiveSync is connected.
*
* @access public
* @return boolean
*/
public function IsOutlookClient() {
if (Request::GetDeviceType() == "WindowsOutlook") {
return true;
}
return false;
}
/** /**
* Adds an Exceptions to the process tracking * Adds an Exceptions to the process tracking
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment