Searched refs:arrResult (Results 1 – 12 of 12) sorted by relevance
/dports/www/dddbl/dddbl2/handler/ |
H A D | register_result_handler.inc.php | 13 $arrResult = $objQueue->getState()->get('PDOStatement')->fetch(); 14 $objQueue->getState()->update(array('result' => (empty($arrResult)) ? null : reset($arrResult))); 26 $arrResult = $objQueue->getState()->get('PDOStatement')->fetch(); 27 $objQueue->getState()->update(array('result' => (empty($arrResult)) ? null : $arrResult)); 40 $objQueue->getState()->update(array('result' => (empty($arrResult)) ? array() : $arrResult)); 54 $arrResult = array(); 57 array_push($arrResult, current($arrRow)); 59 $objQueue->getState()->update(array('result' => $arrResult)); 73 $arrResult = array(); 80 $arrResult[$arrRow[$strGroupColumn]][] = $arrRow; [all …]
|
/dports/www/phpgroupware/phpgroupware-0.9.16.017/phpsysinfo/includes/ |
H A D | common_functions.php | 114 $arrResult['direction'] = "ltr"; 115 $arrResult['left'] = "left"; 116 $arrResult['right'] = "right"; 118 $arrResult['direction'] = "rtl"; 119 $arrResult['left'] = "right"; 120 $arrResult['right'] = "left"; 123 return $arrResult; 332 $arrResult = array(); 338 $arrResult[] = "(" . $intValue . "x) " . $strKey; 340 $arrResult[] = $strKey; [all …]
|
/dports/net-mgmt/nagiosql/nagiosql-365d4e0b5edc623b12ea96e8002e8ac66aad6aac/scripts/ |
H A D | do_config.php | 113 $intRet3 = $myConfigClass->sendSSHCommand($strBinary.' -v '.$strConffile, $arrResult); 169 $intRet2 = $myConfigClass->sendSSHCommand($strCommand, $arrResult); 275 } elseif (isset($arrResult) && is_array($arrResult)) { 279 foreach ($arrResult as $elem) {
|
/dports/net-mgmt/nagiosql/nagiosql-365d4e0b5edc623b12ea96e8002e8ac66aad6aac/admin/ |
H A D | verify.php | 343 … $intResult = $myConfigClass->sendSSHCommand($strBinary.' -v '.$strConffile, $arrResult, 15000); 344 if (!is_array($arrResult) || ($arrResult == false)) { 436 … $myConfigClass->sendSSHCommand('echo "'.$strCommandString.'" >> '.$strCommandfile, $arrResult); 518 } elseif (isset($arrResult) && is_array($arrResult)) { 521 foreach ($arrResult as $elem) {
|
H A D | support.php | 483 $myConfigClass->sendSSHCommand($strBinary.' -V', $arrResult); 484 if (!is_array($arrResult) || ($arrResult == false)) {
|
/dports/www/phpsysinfo/phpsysinfo-3.3.4/includes/ |
H A D | class.Parser.inc.php | 86 $arrResult = array(); 241 $arrResult[] = $dev; 287 $arrResult[] = $dev; 294 return $arrResult;
|
/dports/www/phpsysinfo/phpsysinfo-3.3.4/includes/os/ |
H A D | class.QNX.inc.php | 162 $arrResult = Parser::df("-P 2>/dev/null"); 163 foreach ($arrResult as $dev) {
|
H A D | class.Android.inc.php | 164 $arrResult = Parser::df("-P 2>/dev/null", false); 165 foreach ($arrResult as $dev) {
|
H A D | class.Minix.inc.php | 271 $arrResult = Parser::df("-P 2>/dev/null"); 272 foreach ($arrResult as $dev) {
|
H A D | class.BSDCommon.inc.php | 642 $arrResult = Parser::df(); 643 foreach ($arrResult as $dev) {
|
H A D | class.Linux.inc.php | 1323 $arrResult = Parser::df("-P $df_args 2>/dev/null"); 1325 $arrResult = Parser::df("-P 2>/dev/null"); 1327 foreach ($arrResult as $dev) {
|
/dports/net-mgmt/nagiosql/nagiosql-365d4e0b5edc623b12ea96e8002e8ac66aad6aac/functions/ |
H A D | NagConfigClass.php | 275 $arrResult = array(); 276 if (($intReturn == 0) && ($this->sendSSHCommand($strCommand, $arrResult) == 0) && 277 isset($arrResult[0]) && ($arrResult[0] == $strFilePath)) { 471 * @param array $arrResult Output as array (by reference) 475 public function sendSSHCommand($strCommand, &$arrResult, $intLines = 100) argument 496 $arrResult[] = $strLine; 642 $arrResult = array(); 646 if (($intReturn == 0) && ($this->sendSSHCommand($strCommand, $arrResult) == 0)) { 647 if (isset($arrResult[0]) && $arrResult[0] == $strSourceFile) { 725 if (($intReturn == 0) && ($this->sendSSHCommand('ls '.$strFileName, $arrResult) == 0)) { [all …]
|