public function ShellManager::isWindows in FillPDF 5.0.x
Same name and namespace in other branches
- 8.4 src/ShellManager.php \Drupal\fillpdf\ShellManager::isWindows()
Whether we are running on Windows OS.
Return value
bool TRUE if we're running on Windows, otherwise FALSE.
Overrides ShellManagerInterface::isWindows
2 calls to ShellManager::isWindows()
- ShellManager::escapeShellArg in src/
ShellManager.php - Escapes a string.
- ShellManager::getInstalledLocales in src/
ShellManager.php - Gets the list of locales installed on the server.
File
- src/
ShellManager.php, line 42
Class
- ShellManager
- Manage execution of shell commands.
Namespace
Drupal\fillpdfCode
public function isWindows() {
return $this->isWindows;
}