@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | { |
| 29 | 29 | $db_info = Context::getDBInfo(); |
| 30 | 30 | |
| 31 | - if(strpos($db_info->default_url, 'xn--') !== FALSE) |
|
| 31 | + if (strpos($db_info->default_url, 'xn--') !== FALSE) |
|
| 32 | 32 | { |
| 33 | 33 | $xe_default_url = Context::decodeIdna($db_info->default_url); |
| 34 | 34 | } |
@@ -48,13 +48,13 @@ discard block |
||
| 48 | 48 | // forbit access if the user is not an administrator |
| 49 | 49 | $oMemberModel = getModel('member'); |
| 50 | 50 | $logged_info = $oMemberModel->getLoggedInfo(); |
| 51 | - if($logged_info->is_admin != 'Y') |
|
| 51 | + if ($logged_info->is_admin != 'Y') |
|
| 52 | 52 | { |
| 53 | 53 | return $this->stop("msg_is_not_administrator"); |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | // change into administration layout |
| 57 | - $this->setTemplatePath($this->module_path . 'tpl'); |
|
| 57 | + $this->setTemplatePath($this->module_path.'tpl'); |
|
| 58 | 58 | $this->setLayoutPath($this->getTemplatePath()); |
| 59 | 59 | $this->setLayoutFile('layout.html'); |
| 60 | 60 | |
@@ -74,11 +74,11 @@ discard block |
||
| 74 | 74 | Context::set('use_db_session', $db_info->use_db_session == 'N' ? 'N' : 'Y'); |
| 75 | 75 | Context::set('use_mobile_view', $db_info->use_mobile_view == 'Y' ? 'Y' : 'N'); |
| 76 | 76 | Context::set('use_ssl', $db_info->use_ssl ? $db_info->use_ssl : "none"); |
| 77 | - if($db_info->http_port) |
|
| 77 | + if ($db_info->http_port) |
|
| 78 | 78 | { |
| 79 | 79 | Context::set('http_port', $db_info->http_port); |
| 80 | 80 | } |
| 81 | - if($db_info->https_port) |
|
| 81 | + if ($db_info->https_port) |
|
| 82 | 82 | { |
| 83 | 83 | Context::set('https_port', $db_info->https_port); |
| 84 | 84 | } |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | function checkEasyinstall() |
| 95 | 95 | { |
| 96 | 96 | $lastTime = (int) FileHandler::readFile($this->easyinstallCheckFile); |
| 97 | - if($lastTime > $_SERVER['REQUEST_TIME'] - 60 * 60 * 24 * 30) |
|
| 97 | + if ($lastTime > $_SERVER['REQUEST_TIME'] - 60 * 60 * 24 * 30) |
|
| 98 | 98 | { |
| 99 | 99 | return; |
| 100 | 100 | } |
@@ -108,14 +108,14 @@ discard block |
||
| 108 | 108 | $lUpdateDoc = $xml_lUpdate->parse($buff); |
| 109 | 109 | $updateDate = $lUpdateDoc->response->updatedate->body; |
| 110 | 110 | |
| 111 | - if(!$updateDate) |
|
| 111 | + if (!$updateDate) |
|
| 112 | 112 | { |
| 113 | 113 | $this->_markingCheckEasyinstall(); |
| 114 | 114 | return; |
| 115 | 115 | } |
| 116 | 116 | |
| 117 | 117 | $item = $oAutoinstallModel->getLatestPackage(); |
| 118 | - if(!$item || $item->updatedate < $updateDate) |
|
| 118 | + if (!$item || $item->updatedate < $updateDate) |
|
| 119 | 119 | { |
| 120 | 120 | $oController = getAdminController('autoinstall'); |
| 121 | 121 | $oController->_updateinfo(); |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | |
| 145 | 145 | // Check is_shortcut column |
| 146 | 146 | $oDB = DB::getInstance(); |
| 147 | - if(!$oDB->isColumnExists('menu_item', 'is_shortcut')) |
|
| 147 | + if (!$oDB->isColumnExists('menu_item', 'is_shortcut')) |
|
| 148 | 148 | { |
| 149 | 149 | return; |
| 150 | 150 | } |
@@ -162,9 +162,9 @@ discard block |
||
| 162 | 162 | $currentAct = Context::get('act'); |
| 163 | 163 | $subMenuTitle = ''; |
| 164 | 164 | |
| 165 | - foreach((array) $moduleActionInfo->menu as $key => $value) |
|
| 165 | + foreach ((array) $moduleActionInfo->menu as $key => $value) |
|
| 166 | 166 | { |
| 167 | - if(isset($value->acts) && is_array($value->acts) && in_array($currentAct, $value->acts)) |
|
| 167 | + if (isset($value->acts) && is_array($value->acts) && in_array($currentAct, $value->acts)) |
|
| 168 | 168 | { |
| 169 | 169 | $subMenuTitle = $value->title; |
| 170 | 170 | break; |
@@ -173,21 +173,21 @@ discard block |
||
| 173 | 173 | // get current menu's srl(=parentSrl) |
| 174 | 174 | $parentSrl = 0; |
| 175 | 175 | $oMenuAdminConroller = getAdminController('menu'); |
| 176 | - foreach((array) $menu->list as $parentKey => $parentMenu) |
|
| 176 | + foreach ((array) $menu->list as $parentKey => $parentMenu) |
|
| 177 | 177 | { |
| 178 | - if(!is_array($parentMenu['list']) || !count($parentMenu['list'])) |
|
| 178 | + if (!is_array($parentMenu['list']) || !count($parentMenu['list'])) |
|
| 179 | 179 | { |
| 180 | 180 | continue; |
| 181 | 181 | } |
| 182 | - if($parentMenu['href'] == '#' && count($parentMenu['list'])) |
|
| 182 | + if ($parentMenu['href'] == '#' && count($parentMenu['list'])) |
|
| 183 | 183 | { |
| 184 | 184 | $firstChild = current($parentMenu['list']); |
| 185 | 185 | $menu->list[$parentKey]['href'] = $firstChild['href']; |
| 186 | 186 | } |
| 187 | 187 | |
| 188 | - foreach($parentMenu['list'] as $childKey => $childMenu) |
|
| 188 | + foreach ($parentMenu['list'] as $childKey => $childMenu) |
|
| 189 | 189 | { |
| 190 | - if($subMenuTitle == $childMenu['text'] && $parentSrl == 0) |
|
| 190 | + if ($subMenuTitle == $childMenu['text'] && $parentSrl == 0) |
|
| 191 | 191 | { |
| 192 | 192 | $parentSrl = $childMenu['parent_srl']; |
| 193 | 193 | } |
@@ -200,7 +200,7 @@ discard block |
||
| 200 | 200 | $gnbTitleInfo->adminTitle = $objConfig->adminTitle ? $objConfig->adminTitle : 'XE Admin'; |
| 201 | 201 | $gnbTitleInfo->adminLogo = $objConfig->adminLogo ? $objConfig->adminLogo : 'modules/admin/tpl/img/xe.h1.png'; |
| 202 | 202 | |
| 203 | - $browserTitle = ($subMenuTitle ? $subMenuTitle : 'Dashboard') . ' - ' . $gnbTitleInfo->adminTitle; |
|
| 203 | + $browserTitle = ($subMenuTitle ? $subMenuTitle : 'Dashboard').' - '.$gnbTitleInfo->adminTitle; |
|
| 204 | 204 | |
| 205 | 205 | // Get list of favorite |
| 206 | 206 | $oAdminAdminModel = getAdminModel('admin'); |
@@ -211,7 +211,7 @@ discard block |
||
| 211 | 211 | // move from index method, because use in admin footer |
| 212 | 212 | $newest_news_url = sprintf("http://news.xpressengine.com/%s/news.php?version=%s&package=%s", _XE_LOCATION_, __XE_VERSION__, _XE_PACKAGE_); |
| 213 | 213 | $cache_file = sprintf("%sfiles/cache/newest_news.%s.cache.php", _XE_PATH_, _XE_LOCATION_); |
| 214 | - if(!file_exists($cache_file) || filemtime($cache_file) + 60 * 60 < $_SERVER['REQUEST_TIME']) |
|
| 214 | + if (!file_exists($cache_file) || filemtime($cache_file) + 60 * 60 < $_SERVER['REQUEST_TIME']) |
|
| 215 | 215 | { |
| 216 | 216 | // Considering if data cannot be retrieved due to network problem, modify filemtime to prevent trying to reload again when refreshing administration page |
| 217 | 217 | // Ensure to access the administration page even though news cannot be displayed |
@@ -219,20 +219,20 @@ discard block |
||
| 219 | 219 | FileHandler::getRemoteFile($newest_news_url, $cache_file, null, 1, 'GET', 'text/html', array('REQUESTURL' => getFullUrl(''))); |
| 220 | 220 | } |
| 221 | 221 | |
| 222 | - if(file_exists($cache_file)) |
|
| 222 | + if (file_exists($cache_file)) |
|
| 223 | 223 | { |
| 224 | 224 | $oXml = new XmlParser(); |
| 225 | 225 | $buff = $oXml->parse(FileHandler::readFile($cache_file)); |
| 226 | 226 | |
| 227 | 227 | $item = $buff->zbxe_news->item; |
| 228 | - if($item) |
|
| 228 | + if ($item) |
|
| 229 | 229 | { |
| 230 | - if(!is_array($item)) |
|
| 230 | + if (!is_array($item)) |
|
| 231 | 231 | { |
| 232 | 232 | $item = array($item); |
| 233 | 233 | } |
| 234 | 234 | |
| 235 | - foreach($item as $key => $val) |
|
| 235 | + foreach ($item as $key => $val) |
|
| 236 | 236 | { |
| 237 | 237 | $obj = new stdClass(); |
| 238 | 238 | $obj->title = $val->body; |
@@ -241,7 +241,7 @@ discard block |
||
| 241 | 241 | $news[] = $obj; |
| 242 | 242 | } |
| 243 | 243 | Context::set('news', $news); |
| 244 | - if(isset($news) && is_array($news)) |
|
| 244 | + if (isset($news) && is_array($news)) |
|
| 245 | 245 | { |
| 246 | 246 | Context::set('latestVersion', array_shift($news)); |
| 247 | 247 | } |
@@ -264,7 +264,7 @@ discard block |
||
| 264 | 264 | function dispAdminIndex() |
| 265 | 265 | { |
| 266 | 266 | $db_info = Context::getDBInfo(); |
| 267 | - Context::set('db_info',$db_info); |
|
| 267 | + Context::set('db_info', $db_info); |
|
| 268 | 268 | |
| 269 | 269 | // Get statistics |
| 270 | 270 | $args = new stdClass(); |
@@ -301,9 +301,9 @@ discard block |
||
| 301 | 301 | $args = new stdClass(); |
| 302 | 302 | $args->list_count = 5; |
| 303 | 303 | $output = $oCommentModel->getNewestCommentList($args, $columnList); |
| 304 | - if(is_array($output)) |
|
| 304 | + if (is_array($output)) |
|
| 305 | 305 | { |
| 306 | - foreach($output AS $key => $value) |
|
| 306 | + foreach ($output AS $key => $value) |
|
| 307 | 307 | { |
| 308 | 308 | $value->content = strip_tags($value->content); |
| 309 | 309 | } |
@@ -314,17 +314,17 @@ discard block |
||
| 314 | 314 | // Get list of modules |
| 315 | 315 | $oModuleModel = getModel('module'); |
| 316 | 316 | $module_list = $oModuleModel->getModuleList(); |
| 317 | - if(is_array($module_list)) |
|
| 317 | + if (is_array($module_list)) |
|
| 318 | 318 | { |
| 319 | 319 | $needUpdate = FALSE; |
| 320 | 320 | $addTables = FALSE; |
| 321 | - foreach($module_list AS $key => $value) |
|
| 321 | + foreach ($module_list AS $key => $value) |
|
| 322 | 322 | { |
| 323 | - if($value->need_install) |
|
| 323 | + if ($value->need_install) |
|
| 324 | 324 | { |
| 325 | 325 | $addTables = TRUE; |
| 326 | 326 | } |
| 327 | - if($value->need_update) |
|
| 327 | + if ($value->need_update) |
|
| 328 | 328 | { |
| 329 | 329 | $needUpdate = TRUE; |
| 330 | 330 | } |
@@ -335,12 +335,12 @@ discard block |
||
| 335 | 335 | $oAutoinstallAdminModel = getAdminModel('autoinstall'); |
| 336 | 336 | $needUpdateList = $oAutoinstallAdminModel->getNeedUpdateList(); |
| 337 | 337 | |
| 338 | - if(is_array($needUpdateList)) |
|
| 338 | + if (is_array($needUpdateList)) |
|
| 339 | 339 | { |
| 340 | - foreach($needUpdateList AS $key => $value) |
|
| 340 | + foreach ($needUpdateList AS $key => $value) |
|
| 341 | 341 | { |
| 342 | 342 | $helpUrl = './admin/help/index.html#'; |
| 343 | - switch($value->type) |
|
| 343 | + switch ($value->type) |
|
| 344 | 344 | { |
| 345 | 345 | case 'addon': |
| 346 | 346 | $helpUrl .= 'UMAN_terminology_addon'; |
@@ -367,8 +367,8 @@ discard block |
||
| 367 | 367 | |
| 368 | 368 | $site_module_info = Context::get('site_module_info'); |
| 369 | 369 | $oAddonAdminModel = getAdminModel('addon'); |
| 370 | - $counterAddonActivated = $oAddonAdminModel->isActivatedAddon('counter', $site_module_info->site_srl ); |
|
| 371 | - if(!$counterAddonActivated) |
|
| 370 | + $counterAddonActivated = $oAddonAdminModel->isActivatedAddon('counter', $site_module_info->site_srl); |
|
| 371 | + if (!$counterAddonActivated) |
|
| 372 | 372 | { |
| 373 | 373 | $columnList = array('member_srl', 'nick_name', 'user_name', 'user_id', 'email_address'); |
| 374 | 374 | $args = new stdClass; |
@@ -391,9 +391,9 @@ discard block |
||
| 391 | 391 | |
| 392 | 392 | // gathering enviroment check |
| 393 | 393 | $mainVersion = join('.', array_slice(explode('.', __XE_VERSION__), 0, 2)); |
| 394 | - $path = FileHandler::getRealPath('./files/env/' . $mainVersion); |
|
| 394 | + $path = FileHandler::getRealPath('./files/env/'.$mainVersion); |
|
| 395 | 395 | $isEnviromentGatheringAgreement = FALSE; |
| 396 | - if(file_exists($path)) |
|
| 396 | + if (file_exists($path)) |
|
| 397 | 397 | { |
| 398 | 398 | $isEnviromentGatheringAgreement = TRUE; |
| 399 | 399 | } |
@@ -403,7 +403,7 @@ discard block |
||
| 403 | 403 | $isLicenseAgreement = FALSE; |
| 404 | 404 | $path = FileHandler::getRealPath('./files/env/license_agreement'); |
| 405 | 405 | $isLicenseAgreement = FALSE; |
| 406 | - if(file_exists($path)) |
|
| 406 | + if (file_exists($path)) |
|
| 407 | 407 | { |
| 408 | 408 | $isLicenseAgreement = TRUE; |
| 409 | 409 | } |
@@ -425,7 +425,7 @@ discard block |
||
| 425 | 425 | |
| 426 | 426 | Context::set('selected_lang', $db_info->lang_type); |
| 427 | 427 | |
| 428 | - if(strpos($db_info->default_url, 'xn--') !== FALSE) |
|
| 428 | + if (strpos($db_info->default_url, 'xn--') !== FALSE) |
|
| 429 | 429 | { |
| 430 | 430 | $db_info->default_url = Context::decodeIdna($db_info->default_url); |
| 431 | 431 | } |
@@ -434,9 +434,9 @@ discard block |
||
| 434 | 434 | |
| 435 | 435 | // site lock |
| 436 | 436 | Context::set('IP', $_SERVER['REMOTE_ADDR']); |
| 437 | - if(!$db_info->sitelock_title) $db_info->sitelock_title = 'Maintenance in progress...'; |
|
| 438 | - if(!in_array('127.0.0.1', $db_info->sitelock_whitelist)) $db_info->sitelock_whitelist[] = '127.0.0.1'; |
|
| 439 | - if(!in_array($_SERVER['REMOTE_ADDR'], $db_info->sitelock_whitelist)) $db_info->sitelock_whitelist[] = $_SERVER['REMOTE_ADDR']; |
|
| 437 | + if (!$db_info->sitelock_title) $db_info->sitelock_title = 'Maintenance in progress...'; |
|
| 438 | + if (!in_array('127.0.0.1', $db_info->sitelock_whitelist)) $db_info->sitelock_whitelist[] = '127.0.0.1'; |
|
| 439 | + if (!in_array($_SERVER['REMOTE_ADDR'], $db_info->sitelock_whitelist)) $db_info->sitelock_whitelist[] = $_SERVER['REMOTE_ADDR']; |
|
| 440 | 440 | $db_info->sitelock_whitelist = array_unique($db_info->sitelock_whitelist); |
| 441 | 441 | Context::set('remote_addr', $_SERVER['REMOTE_ADDR']); |
| 442 | 442 | Context::set('use_sitelock', $db_info->use_sitelock); |
@@ -447,7 +447,7 @@ discard block |
||
| 447 | 447 | Context::set('sitelock_whitelist', $whitelist); |
| 448 | 448 | |
| 449 | 449 | |
| 450 | - if($db_info->admin_ip_list) $admin_ip_list = implode("\r\n", $db_info->admin_ip_list); |
|
| 450 | + if ($db_info->admin_ip_list) $admin_ip_list = implode("\r\n", $db_info->admin_ip_list); |
|
| 451 | 451 | else $admin_ip_list = ''; |
| 452 | 452 | Context::set('admin_ip_list', $admin_ip_list); |
| 453 | 453 | |
@@ -470,7 +470,7 @@ discard block |
||
| 470 | 470 | Context::set('htmlFooter', htmlspecialchars($config->htmlFooter)); |
| 471 | 471 | |
| 472 | 472 | // embed filter |
| 473 | - require_once(_XE_PATH_ . 'classes/security/EmbedFilter.class.php'); |
|
| 473 | + require_once(_XE_PATH_.'classes/security/EmbedFilter.class.php'); |
|
| 474 | 474 | $oEmbedFilter = EmbedFilter::getInstance(); |
| 475 | 475 | context::set('embed_white_object', implode(PHP_EOL, $oEmbedFilter->whiteUrlList)); |
| 476 | 476 | context::set('embed_white_iframe', implode(PHP_EOL, $oEmbedFilter->whiteIframeUrlList)); |
@@ -529,36 +529,36 @@ discard block |
||
| 529 | 529 | */ |
| 530 | 530 | function showSendEnv() |
| 531 | 531 | { |
| 532 | - if(Context::getResponseMethod() != 'HTML') |
|
| 532 | + if (Context::getResponseMethod() != 'HTML') |
|
| 533 | 533 | { |
| 534 | 534 | return; |
| 535 | 535 | } |
| 536 | 536 | |
| 537 | 537 | $server = 'http://collect.xpressengine.com/env/img.php?'; |
| 538 | 538 | $path = './files/env/'; |
| 539 | - $install_env = $path . 'install'; |
|
| 539 | + $install_env = $path.'install'; |
|
| 540 | 540 | $mainVersion = join('.', array_slice(explode('.', __XE_VERSION__), 0, 2)); |
| 541 | 541 | |
| 542 | - if(file_exists(FileHandler::getRealPath($install_env))) |
|
| 542 | + if (file_exists(FileHandler::getRealPath($install_env))) |
|
| 543 | 543 | { |
| 544 | 544 | $oAdminAdminModel = getAdminModel('admin'); |
| 545 | 545 | $params = $oAdminAdminModel->getEnv('INSTALL'); |
| 546 | - $img = sprintf('<img src="%s" alt="" style="height:0px;width:0px" />', $server . $params); |
|
| 546 | + $img = sprintf('<img src="%s" alt="" style="height:0px;width:0px" />', $server.$params); |
|
| 547 | 547 | Context::addHtmlFooter($img); |
| 548 | 548 | |
| 549 | - FileHandler::writeFile($path . $mainVersion, '1'); |
|
| 549 | + FileHandler::writeFile($path.$mainVersion, '1'); |
|
| 550 | 550 | } |
| 551 | - else if(isset($_SESSION['enviroment_gather']) && !file_exists(FileHandler::getRealPath($path . $mainVersion))) |
|
| 551 | + else if (isset($_SESSION['enviroment_gather']) && !file_exists(FileHandler::getRealPath($path.$mainVersion))) |
|
| 552 | 552 | { |
| 553 | - if($_SESSION['enviroment_gather'] == 'Y') |
|
| 553 | + if ($_SESSION['enviroment_gather'] == 'Y') |
|
| 554 | 554 | { |
| 555 | 555 | $oAdminAdminModel = getAdminModel('admin'); |
| 556 | 556 | $params = $oAdminAdminModel->getEnv(); |
| 557 | - $img = sprintf('<img src="%s" alt="" style="height:0px;width:0px" />', $server . $params); |
|
| 557 | + $img = sprintf('<img src="%s" alt="" style="height:0px;width:0px" />', $server.$params); |
|
| 558 | 558 | Context::addHtmlFooter($img); |
| 559 | 559 | } |
| 560 | 560 | |
| 561 | - FileHandler::writeFile($path . $mainVersion, '1'); |
|
| 561 | + FileHandler::writeFile($path.$mainVersion, '1'); |
|
| 562 | 562 | unset($_SESSION['enviroment_gather']); |
| 563 | 563 | } |
| 564 | 564 | } |
@@ -576,64 +576,64 @@ discard block |
||
| 576 | 576 | $tmp = explode("&", $envInfo); |
| 577 | 577 | $arrInfo = array(); |
| 578 | 578 | $xe_check_env = array(); |
| 579 | - foreach($tmp as $value) { |
|
| 579 | + foreach ($tmp as $value) { |
|
| 580 | 580 | $arr = explode("=", $value); |
| 581 | - if($arr[0]=="type") { |
|
| 581 | + if ($arr[0] == "type") { |
|
| 582 | 582 | continue; |
| 583 | - }elseif($arr[0]=="phpext" ) { |
|
| 583 | + }elseif ($arr[0] == "phpext") { |
|
| 584 | 584 | $str = urldecode($arr[1]); |
| 585 | - $xe_check_env[$arr[0]]= str_replace("|", ", ", $str); |
|
| 586 | - } elseif($arr[0]=="module" ) { |
|
| 585 | + $xe_check_env[$arr[0]] = str_replace("|", ", ", $str); |
|
| 586 | + } elseif ($arr[0] == "module") { |
|
| 587 | 587 | $str = urldecode($arr[1]); |
| 588 | 588 | $arrModuleName = explode("|", $str); |
| 589 | 589 | $oModuleModel = getModel("module"); |
| 590 | 590 | $mInfo = array(); |
| 591 | - foreach($arrModuleName as $moduleName) { |
|
| 591 | + foreach ($arrModuleName as $moduleName) { |
|
| 592 | 592 | $moduleInfo = $oModuleModel->getModuleInfoXml($moduleName); |
| 593 | 593 | $mInfo[] = "{$moduleName}({$moduleInfo->version})"; |
| 594 | 594 | } |
| 595 | - $xe_check_env[$arr[0]]= join(", ", $mInfo); |
|
| 596 | - } elseif($arr[0]=="addon") { |
|
| 595 | + $xe_check_env[$arr[0]] = join(", ", $mInfo); |
|
| 596 | + } elseif ($arr[0] == "addon") { |
|
| 597 | 597 | $str = urldecode($arr[1]); |
| 598 | 598 | $arrAddonName = explode("|", $str); |
| 599 | 599 | $oAddonModel = getAdminModel("addon"); |
| 600 | 600 | $mInfo = array(); |
| 601 | - foreach($arrAddonName as $addonName) { |
|
| 601 | + foreach ($arrAddonName as $addonName) { |
|
| 602 | 602 | $addonInfo = $oAddonModel->getAddonInfoXml($addonName); |
| 603 | 603 | $mInfo[] = "{$addonName}({$addonInfo->version})"; |
| 604 | 604 | } |
| 605 | - $xe_check_env[$arr[0]]= join(", ", $mInfo); |
|
| 606 | - } elseif($arr[0]=="widget") { |
|
| 605 | + $xe_check_env[$arr[0]] = join(", ", $mInfo); |
|
| 606 | + } elseif ($arr[0] == "widget") { |
|
| 607 | 607 | $str = urldecode($arr[1]); |
| 608 | 608 | $arrWidgetName = explode("|", $str); |
| 609 | 609 | $oWidgetModel = getModel("widget"); |
| 610 | 610 | $mInfo = array(); |
| 611 | - foreach($arrWidgetName as $widgetName) { |
|
| 611 | + foreach ($arrWidgetName as $widgetName) { |
|
| 612 | 612 | $widgetInfo = $oWidgetModel->getWidgetInfo($widgetName); |
| 613 | 613 | $mInfo[] = "{$widgetName}({$widgetInfo->version})"; |
| 614 | 614 | } |
| 615 | - $xe_check_env[$arr[0]]= join(", ", $mInfo); |
|
| 616 | - } elseif($arr[0]=="widgetstyle") { |
|
| 615 | + $xe_check_env[$arr[0]] = join(", ", $mInfo); |
|
| 616 | + } elseif ($arr[0] == "widgetstyle") { |
|
| 617 | 617 | $str = urldecode($arr[1]); |
| 618 | 618 | $arrWidgetstyleName = explode("|", $str); |
| 619 | 619 | $oWidgetModel = getModel("widget"); |
| 620 | 620 | $mInfo = array(); |
| 621 | - foreach($arrWidgetstyleName as $widgetstyleName) { |
|
| 621 | + foreach ($arrWidgetstyleName as $widgetstyleName) { |
|
| 622 | 622 | $widgetstyleInfo = $oWidgetModel->getWidgetStyleInfo($widgetstyleName); |
| 623 | 623 | $mInfo[] = "{$widgetstyleName}({$widgetstyleInfo->version})"; |
| 624 | 624 | } |
| 625 | - $xe_check_env[$arr[0]]= join(", ", $mInfo); |
|
| 625 | + $xe_check_env[$arr[0]] = join(", ", $mInfo); |
|
| 626 | 626 | |
| 627 | - } elseif($arr[0]=="layout") { |
|
| 627 | + } elseif ($arr[0] == "layout") { |
|
| 628 | 628 | $str = urldecode($arr[1]); |
| 629 | 629 | $arrLayoutName = explode("|", $str); |
| 630 | 630 | $oLayoutModel = getModel("layout"); |
| 631 | 631 | $mInfo = array(); |
| 632 | - foreach($arrLayoutName as $layoutName) { |
|
| 632 | + foreach ($arrLayoutName as $layoutName) { |
|
| 633 | 633 | $layoutInfo = $oLayoutModel->getLayoutInfo($layoutName); |
| 634 | 634 | $mInfo[] = "{$layoutName}({$layoutInfo->version})"; |
| 635 | 635 | } |
| 636 | - $xe_check_env[$arr[0]]= join(", ", $mInfo); |
|
| 636 | + $xe_check_env[$arr[0]] = join(", ", $mInfo); |
|
| 637 | 637 | } else { |
| 638 | 638 | $xe_check_env[$arr[0]] = urldecode($arr[1]); |
| 639 | 639 | } |
@@ -647,15 +647,15 @@ discard block |
||
| 647 | 647 | $php_core['memory_limit'] = "{$ini_info['memory_limit']['local_value']}"; |
| 648 | 648 | $info['PHP_Core'] = $php_core; |
| 649 | 649 | |
| 650 | - $str_info = "[XE Server Environment " . date("Y-m-d") . "]\n\n"; |
|
| 650 | + $str_info = "[XE Server Environment ".date("Y-m-d")."]\n\n"; |
|
| 651 | 651 | $str_info .= "realpath : ".realpath('./')."\n"; |
| 652 | - foreach( $info as $key=>$value ) |
|
| 652 | + foreach ($info as $key=>$value) |
|
| 653 | 653 | { |
| 654 | - if( is_array( $value ) == false ) { |
|
| 654 | + if (is_array($value) == false) { |
|
| 655 | 655 | $str_info .= "{$key} : {$value}\n"; |
| 656 | 656 | } else { |
| 657 | 657 | //$str_info .= "\n{$key} \n"; |
| 658 | - foreach( $value as $key2=>$value2 ) |
|
| 658 | + foreach ($value as $key2=>$value2) |
|
| 659 | 659 | $str_info .= "{$key2} : {$value2}\n"; |
| 660 | 660 | } |
| 661 | 661 | } |
@@ -672,7 +672,7 @@ discard block |
||
| 672 | 672 | Context::set('use_rewrite', $useRewrite); |
| 673 | 673 | |
| 674 | 674 | // nginx 체크, rewrite 사용법 안내 |
| 675 | - if($useRewrite == 'N' && stripos($_SERVER['SERVER_SOFTWARE'], 'nginx') !== false) Context::set('use_nginx', 'Y'); |
|
| 675 | + if ($useRewrite == 'N' && stripos($_SERVER['SERVER_SOFTWARE'], 'nginx') !== false) Context::set('use_nginx', 'Y'); |
|
| 676 | 676 | |
| 677 | 677 | Context::set('useable', $oInstallController->checkInstallEnv()); |
| 678 | 678 | $this->setTemplateFile('check_env.html'); |
@@ -31,8 +31,7 @@ discard block |
||
| 31 | 31 | if(strpos($db_info->default_url, 'xn--') !== FALSE) |
| 32 | 32 | { |
| 33 | 33 | $xe_default_url = Context::decodeIdna($db_info->default_url); |
| 34 | - } |
|
| 35 | - else |
|
| 34 | + } else |
|
| 36 | 35 | { |
| 37 | 36 | $xe_default_url = $db_info->default_url; |
| 38 | 37 | } |
@@ -434,9 +433,15 @@ discard block |
||
| 434 | 433 | |
| 435 | 434 | // site lock |
| 436 | 435 | Context::set('IP', $_SERVER['REMOTE_ADDR']); |
| 437 | - if(!$db_info->sitelock_title) $db_info->sitelock_title = 'Maintenance in progress...'; |
|
| 438 | - if(!in_array('127.0.0.1', $db_info->sitelock_whitelist)) $db_info->sitelock_whitelist[] = '127.0.0.1'; |
|
| 439 | - if(!in_array($_SERVER['REMOTE_ADDR'], $db_info->sitelock_whitelist)) $db_info->sitelock_whitelist[] = $_SERVER['REMOTE_ADDR']; |
|
| 436 | + if(!$db_info->sitelock_title) { |
|
| 437 | + $db_info->sitelock_title = 'Maintenance in progress...'; |
|
| 438 | + } |
|
| 439 | + if(!in_array('127.0.0.1', $db_info->sitelock_whitelist)) { |
|
| 440 | + $db_info->sitelock_whitelist[] = '127.0.0.1'; |
|
| 441 | + } |
|
| 442 | + if(!in_array($_SERVER['REMOTE_ADDR'], $db_info->sitelock_whitelist)) { |
|
| 443 | + $db_info->sitelock_whitelist[] = $_SERVER['REMOTE_ADDR']; |
|
| 444 | + } |
|
| 440 | 445 | $db_info->sitelock_whitelist = array_unique($db_info->sitelock_whitelist); |
| 441 | 446 | Context::set('remote_addr', $_SERVER['REMOTE_ADDR']); |
| 442 | 447 | Context::set('use_sitelock', $db_info->use_sitelock); |
@@ -447,8 +452,11 @@ discard block |
||
| 447 | 452 | Context::set('sitelock_whitelist', $whitelist); |
| 448 | 453 | |
| 449 | 454 | |
| 450 | - if($db_info->admin_ip_list) $admin_ip_list = implode("\r\n", $db_info->admin_ip_list); |
|
| 451 | - else $admin_ip_list = ''; |
|
| 455 | + if($db_info->admin_ip_list) { |
|
| 456 | + $admin_ip_list = implode("\r\n", $db_info->admin_ip_list); |
|
| 457 | + } else { |
|
| 458 | + $admin_ip_list = ''; |
|
| 459 | + } |
|
| 452 | 460 | Context::set('admin_ip_list', $admin_ip_list); |
| 453 | 461 | |
| 454 | 462 | Context::set('lang_selected', Context::loadLangSelected()); |
@@ -547,8 +555,7 @@ discard block |
||
| 547 | 555 | Context::addHtmlFooter($img); |
| 548 | 556 | |
| 549 | 557 | FileHandler::writeFile($path . $mainVersion, '1'); |
| 550 | - } |
|
| 551 | - else if(isset($_SESSION['enviroment_gather']) && !file_exists(FileHandler::getRealPath($path . $mainVersion))) |
|
| 558 | + } else if(isset($_SESSION['enviroment_gather']) && !file_exists(FileHandler::getRealPath($path . $mainVersion))) |
|
| 552 | 559 | { |
| 553 | 560 | if($_SESSION['enviroment_gather'] == 'Y') |
| 554 | 561 | { |
@@ -580,7 +587,7 @@ discard block |
||
| 580 | 587 | $arr = explode("=", $value); |
| 581 | 588 | if($arr[0]=="type") { |
| 582 | 589 | continue; |
| 583 | - }elseif($arr[0]=="phpext" ) { |
|
| 590 | + } elseif($arr[0]=="phpext" ) { |
|
| 584 | 591 | $str = urldecode($arr[1]); |
| 585 | 592 | $xe_check_env[$arr[0]]= str_replace("|", ", ", $str); |
| 586 | 593 | } elseif($arr[0]=="module" ) { |
@@ -655,8 +662,9 @@ discard block |
||
| 655 | 662 | $str_info .= "{$key} : {$value}\n"; |
| 656 | 663 | } else { |
| 657 | 664 | //$str_info .= "\n{$key} \n"; |
| 658 | - foreach( $value as $key2=>$value2 ) |
|
| 659 | - $str_info .= "{$key2} : {$value2}\n"; |
|
| 665 | + foreach( $value as $key2=>$value2 ) { |
|
| 666 | + $str_info .= "{$key2} : {$value2}\n"; |
|
| 667 | + } |
|
| 660 | 668 | } |
| 661 | 669 | } |
| 662 | 670 | |
@@ -672,7 +680,9 @@ discard block |
||
| 672 | 680 | Context::set('use_rewrite', $useRewrite); |
| 673 | 681 | |
| 674 | 682 | // nginx 체크, rewrite 사용법 안내 |
| 675 | - if($useRewrite == 'N' && stripos($_SERVER['SERVER_SOFTWARE'], 'nginx') !== false) Context::set('use_nginx', 'Y'); |
|
| 683 | + if($useRewrite == 'N' && stripos($_SERVER['SERVER_SOFTWARE'], 'nginx') !== false) { |
|
| 684 | + Context::set('use_nginx', 'Y'); |
|
| 685 | + } |
|
| 676 | 686 | |
| 677 | 687 | Context::set('useable', $oInstallController->checkInstallEnv()); |
| 678 | 688 | $this->setTemplateFile('check_env.html'); |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | function DBCubrid($auto_connect = TRUE) |
| 53 | 53 | { |
| 54 | 54 | $this->_setDBInfo(); |
| 55 | - if($auto_connect) $this->_connect(); |
|
| 55 | + if ($auto_connect) $this->_connect(); |
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | /** |
@@ -76,21 +76,21 @@ discard block |
||
| 76 | 76 | $result = @cubrid_connect($connection["db_hostname"], $connection["db_port"], $connection["db_database"], $connection["db_userid"], $connection["db_password"]); |
| 77 | 77 | |
| 78 | 78 | // check connections |
| 79 | - if(!$result) |
|
| 79 | + if (!$result) |
|
| 80 | 80 | { |
| 81 | 81 | $this->setError(-1, 'database connect fail'); |
| 82 | 82 | return; |
| 83 | 83 | } |
| 84 | 84 | |
| 85 | - if(!defined('__CUBRID_VERSION__')) |
|
| 85 | + if (!defined('__CUBRID_VERSION__')) |
|
| 86 | 86 | { |
| 87 | 87 | $cubrid_version = cubrid_get_server_info($result); |
| 88 | 88 | $cubrid_version_elem = explode('.', $cubrid_version); |
| 89 | - $cubrid_version = $cubrid_version_elem[0] . '.' . $cubrid_version_elem[1] . '.' . $cubrid_version_elem[2]; |
|
| 89 | + $cubrid_version = $cubrid_version_elem[0].'.'.$cubrid_version_elem[1].'.'.$cubrid_version_elem[2]; |
|
| 90 | 90 | define('__CUBRID_VERSION__', $cubrid_version); |
| 91 | 91 | } |
| 92 | 92 | |
| 93 | - if(__CUBRID_VERSION__ >= '8.4.0') |
|
| 93 | + if (__CUBRID_VERSION__ >= '8.4.0') |
|
| 94 | 94 | cubrid_set_autocommit($result, CUBRID_AUTOCOMMIT_TRUE); |
| 95 | 95 | |
| 96 | 96 | return $result; |
@@ -116,13 +116,13 @@ discard block |
||
| 116 | 116 | */ |
| 117 | 117 | function addQuotes($string) |
| 118 | 118 | { |
| 119 | - if(version_compare(PHP_VERSION, "5.4.0", "<") && |
|
| 119 | + if (version_compare(PHP_VERSION, "5.4.0", "<") && |
|
| 120 | 120 | get_magic_quotes_gpc()) |
| 121 | 121 | { |
| 122 | 122 | $string = stripslashes(str_replace("\\", "\\\\", $string)); |
| 123 | 123 | } |
| 124 | 124 | |
| 125 | - if(!is_numeric($string)) |
|
| 125 | + if (!is_numeric($string)) |
|
| 126 | 126 | { |
| 127 | 127 | /* |
| 128 | 128 | if ($this->isConnected()) { |
@@ -146,17 +146,17 @@ discard block |
||
| 146 | 146 | */ |
| 147 | 147 | function _begin($transactionLevel = 0) |
| 148 | 148 | { |
| 149 | - if(__CUBRID_VERSION__ >= '8.4.0') |
|
| 149 | + if (__CUBRID_VERSION__ >= '8.4.0') |
|
| 150 | 150 | { |
| 151 | 151 | $connection = $this->_getConnection('master'); |
| 152 | 152 | |
| 153 | - if(!$transactionLevel) |
|
| 153 | + if (!$transactionLevel) |
|
| 154 | 154 | { |
| 155 | 155 | cubrid_set_autocommit($connection, CUBRID_AUTOCOMMIT_FALSE); |
| 156 | 156 | } |
| 157 | 157 | else |
| 158 | 158 | { |
| 159 | - $this->_query("SAVEPOINT SP" . $transactionLevel, $connection); |
|
| 159 | + $this->_query("SAVEPOINT SP".$transactionLevel, $connection); |
|
| 160 | 160 | } |
| 161 | 161 | } |
| 162 | 162 | return TRUE; |
@@ -173,9 +173,9 @@ discard block |
||
| 173 | 173 | |
| 174 | 174 | $point = $transactionLevel - 1; |
| 175 | 175 | |
| 176 | - if($point) |
|
| 176 | + if ($point) |
|
| 177 | 177 | { |
| 178 | - $this->_query("ROLLBACK TO SP" . $point, $connection); |
|
| 178 | + $this->_query("ROLLBACK TO SP".$point, $connection); |
|
| 179 | 179 | } |
| 180 | 180 | else |
| 181 | 181 | { |
@@ -206,29 +206,29 @@ discard block |
||
| 206 | 206 | */ |
| 207 | 207 | function __query($query, $connection) |
| 208 | 208 | { |
| 209 | - if($this->use_prepared_statements == 'Y') |
|
| 209 | + if ($this->use_prepared_statements == 'Y') |
|
| 210 | 210 | { |
| 211 | 211 | $req = @cubrid_prepare($connection, $query); |
| 212 | - if(!$req) |
|
| 212 | + if (!$req) |
|
| 213 | 213 | { |
| 214 | 214 | $this->_setError(); |
| 215 | 215 | return false; |
| 216 | 216 | } |
| 217 | 217 | |
| 218 | 218 | $position = 0; |
| 219 | - if($this->param) |
|
| 219 | + if ($this->param) |
|
| 220 | 220 | { |
| 221 | - foreach($this->param as $param) |
|
| 221 | + foreach ($this->param as $param) |
|
| 222 | 222 | { |
| 223 | 223 | $value = $param->getUnescapedValue(); |
| 224 | 224 | $type = $param->getType(); |
| 225 | 225 | |
| 226 | - if($param->isColumnName()) |
|
| 226 | + if ($param->isColumnName()) |
|
| 227 | 227 | { |
| 228 | 228 | continue; |
| 229 | 229 | } |
| 230 | 230 | |
| 231 | - switch($type) |
|
| 231 | + switch ($type) |
|
| 232 | 232 | { |
| 233 | 233 | case 'number' : |
| 234 | 234 | $bind_type = 'numeric'; |
@@ -240,12 +240,12 @@ discard block |
||
| 240 | 240 | $bind_type = 'string'; |
| 241 | 241 | } |
| 242 | 242 | |
| 243 | - if(is_array($value)) |
|
| 243 | + if (is_array($value)) |
|
| 244 | 244 | { |
| 245 | - foreach($value as $v) |
|
| 245 | + foreach ($value as $v) |
|
| 246 | 246 | { |
| 247 | 247 | $bound = @cubrid_bind($req, ++$position, $v, $bind_type); |
| 248 | - if(!$bound) |
|
| 248 | + if (!$bound) |
|
| 249 | 249 | { |
| 250 | 250 | $this->_setError(); |
| 251 | 251 | return false; |
@@ -255,7 +255,7 @@ discard block |
||
| 255 | 255 | else |
| 256 | 256 | { |
| 257 | 257 | $bound = @cubrid_bind($req, ++$position, $value, $bind_type); |
| 258 | - if(!$bound) |
|
| 258 | + if (!$bound) |
|
| 259 | 259 | { |
| 260 | 260 | $this->_setError(); |
| 261 | 261 | return false; |
@@ -265,7 +265,7 @@ discard block |
||
| 265 | 265 | } |
| 266 | 266 | |
| 267 | 267 | $result = @cubrid_execute($req); |
| 268 | - if(!$result) |
|
| 268 | + if (!$result) |
|
| 269 | 269 | { |
| 270 | 270 | $this->_setError(); |
| 271 | 271 | return false; |
@@ -275,7 +275,7 @@ discard block |
||
| 275 | 275 | // Execute the query |
| 276 | 276 | $result = @cubrid_execute($connection, $query); |
| 277 | 277 | // error check |
| 278 | - if(!$result) |
|
| 278 | + if (!$result) |
|
| 279 | 279 | { |
| 280 | 280 | $this->_setError(); |
| 281 | 281 | return false; |
@@ -306,12 +306,12 @@ discard block |
||
| 306 | 306 | function _fetch($result, $arrayIndexEndValue = NULL) |
| 307 | 307 | { |
| 308 | 308 | $output = array(); |
| 309 | - if(!$this->isConnected() || $this->isError() || !$result) |
|
| 309 | + if (!$this->isConnected() || $this->isError() || !$result) |
|
| 310 | 310 | { |
| 311 | 311 | return array(); |
| 312 | 312 | } |
| 313 | 313 | |
| 314 | - if($this->use_prepared_statements == 'Y') |
|
| 314 | + if ($this->use_prepared_statements == 'Y') |
|
| 315 | 315 | { |
| 316 | 316 | |
| 317 | 317 | } |
@@ -322,25 +322,25 @@ discard block |
||
| 322 | 322 | $col_names = cubrid_column_names($result); |
| 323 | 323 | $max = count($col_types); |
| 324 | 324 | |
| 325 | - for($count = 0; $count < $max; $count++) |
|
| 325 | + for ($count = 0; $count < $max; $count++) |
|
| 326 | 326 | { |
| 327 | - if(preg_match("/^char/", $col_types[$count]) > 0) |
|
| 327 | + if (preg_match("/^char/", $col_types[$count]) > 0) |
|
| 328 | 328 | { |
| 329 | 329 | $char_type_fields[] = $col_names[$count]; |
| 330 | 330 | } |
| 331 | 331 | } |
| 332 | 332 | |
| 333 | - while($tmp = cubrid_fetch($result, CUBRID_OBJECT)) |
|
| 333 | + while ($tmp = cubrid_fetch($result, CUBRID_OBJECT)) |
|
| 334 | 334 | { |
| 335 | - if(is_array($char_type_fields)) |
|
| 335 | + if (is_array($char_type_fields)) |
|
| 336 | 336 | { |
| 337 | - foreach($char_type_fields as $val) |
|
| 337 | + foreach ($char_type_fields as $val) |
|
| 338 | 338 | { |
| 339 | 339 | $tmp->{$val} = rtrim($tmp->{$val}); |
| 340 | 340 | } |
| 341 | 341 | } |
| 342 | 342 | |
| 343 | - if($arrayIndexEndValue) |
|
| 343 | + if ($arrayIndexEndValue) |
|
| 344 | 344 | { |
| 345 | 345 | $output[$arrayIndexEndValue--] = $tmp; |
| 346 | 346 | } |
@@ -352,15 +352,15 @@ discard block |
||
| 352 | 352 | |
| 353 | 353 | unset($char_type_fields); |
| 354 | 354 | |
| 355 | - if($result) |
|
| 355 | + if ($result) |
|
| 356 | 356 | { |
| 357 | 357 | cubrid_close_request($result); |
| 358 | 358 | } |
| 359 | 359 | |
| 360 | - if(count($output) == 1) |
|
| 360 | + if (count($output) == 1) |
|
| 361 | 361 | { |
| 362 | 362 | // If call is made for pagination, always return array |
| 363 | - if(isset($arrayIndexEndValue)) |
|
| 363 | + if (isset($arrayIndexEndValue)) |
|
| 364 | 364 | { |
| 365 | 365 | return $output; |
| 366 | 366 | } |
@@ -395,7 +395,7 @@ discard block |
||
| 395 | 395 | */ |
| 396 | 396 | function _makeSequence() |
| 397 | 397 | { |
| 398 | - if($_GLOBALS['XE_EXISTS_SEQUENCE']) |
|
| 398 | + if ($_GLOBALS['XE_EXISTS_SEQUENCE']) |
|
| 399 | 399 | return; |
| 400 | 400 | |
| 401 | 401 | // check cubrid serial |
@@ -404,21 +404,21 @@ discard block |
||
| 404 | 404 | $output = $this->_fetch($result); |
| 405 | 405 | |
| 406 | 406 | // if do not create serial |
| 407 | - if($output->count == 0) |
|
| 408 | - { |
|
| 409 | - $query = sprintf('select max("a"."srl") as "srl" from ' . |
|
| 410 | - '( select max("document_srl") as "srl" from ' . |
|
| 411 | - '"%sdocuments" UNION ' . |
|
| 412 | - 'select max("comment_srl") as "srl" from ' . |
|
| 413 | - '"%scomments" UNION ' . |
|
| 414 | - 'select max("member_srl") as "srl" from ' . |
|
| 415 | - '"%smember"' . |
|
| 407 | + if ($output->count == 0) |
|
| 408 | + { |
|
| 409 | + $query = sprintf('select max("a"."srl") as "srl" from '. |
|
| 410 | + '( select max("document_srl") as "srl" from '. |
|
| 411 | + '"%sdocuments" UNION '. |
|
| 412 | + 'select max("comment_srl") as "srl" from '. |
|
| 413 | + '"%scomments" UNION '. |
|
| 414 | + 'select max("member_srl") as "srl" from '. |
|
| 415 | + '"%smember"'. |
|
| 416 | 416 | ') as "a"', $this->prefix, $this->prefix, $this->prefix); |
| 417 | 417 | |
| 418 | 418 | $result = $this->_query($query); |
| 419 | 419 | $output = $this->_fetch($result); |
| 420 | 420 | $srl = $output->srl; |
| 421 | - if($srl < 1) |
|
| 421 | + if ($srl < 1) |
|
| 422 | 422 | { |
| 423 | 423 | $start = 1; |
| 424 | 424 | } |
@@ -442,7 +442,7 @@ discard block |
||
| 442 | 442 | */ |
| 443 | 443 | function isTableExists($target_name) |
| 444 | 444 | { |
| 445 | - if($target_name == 'sequence') |
|
| 445 | + if ($target_name == 'sequence') |
|
| 446 | 446 | { |
| 447 | 447 | $query = sprintf("select \"name\" from \"db_serial\" where \"name\" = '%s%s'", $this->prefix, $target_name); |
| 448 | 448 | } |
@@ -452,7 +452,7 @@ discard block |
||
| 452 | 452 | } |
| 453 | 453 | |
| 454 | 454 | $result = $this->_query($query); |
| 455 | - if(cubrid_num_rows($result) > 0) |
|
| 455 | + if (cubrid_num_rows($result) > 0) |
|
| 456 | 456 | { |
| 457 | 457 | $output = TRUE; |
| 458 | 458 | } |
@@ -461,7 +461,7 @@ discard block |
||
| 461 | 461 | $output = FALSE; |
| 462 | 462 | } |
| 463 | 463 | |
| 464 | - if($result) |
|
| 464 | + if ($result) |
|
| 465 | 465 | { |
| 466 | 466 | cubrid_close_request($result); |
| 467 | 467 | } |
@@ -482,22 +482,22 @@ discard block |
||
| 482 | 482 | function addColumn($table_name, $column_name, $type = 'number', $size = '', $default = null, $notnull = FALSE) |
| 483 | 483 | { |
| 484 | 484 | $type = strtoupper($this->column_type[$type]); |
| 485 | - if($type == 'INTEGER') |
|
| 485 | + if ($type == 'INTEGER') |
|
| 486 | 486 | { |
| 487 | 487 | $size = ''; |
| 488 | 488 | } |
| 489 | 489 | |
| 490 | 490 | $query = sprintf("alter class \"%s%s\" add \"%s\" ", $this->prefix, $table_name, $column_name); |
| 491 | 491 | |
| 492 | - if($type == 'char' || $type == 'varchar') |
|
| 492 | + if ($type == 'char' || $type == 'varchar') |
|
| 493 | 493 | { |
| 494 | - if($size) |
|
| 494 | + if ($size) |
|
| 495 | 495 | { |
| 496 | 496 | $size = $size * 3; |
| 497 | 497 | } |
| 498 | 498 | } |
| 499 | 499 | |
| 500 | - if($size) |
|
| 500 | + if ($size) |
|
| 501 | 501 | { |
| 502 | 502 | $query .= sprintf("%s(%s) ", $type, $size); |
| 503 | 503 | } |
@@ -506,9 +506,9 @@ discard block |
||
| 506 | 506 | $query .= sprintf("%s ", $type); |
| 507 | 507 | } |
| 508 | 508 | |
| 509 | - if(isset($default)) |
|
| 509 | + if (isset($default)) |
|
| 510 | 510 | { |
| 511 | - if($type == 'INTEGER' || $type == 'BIGINT' || $type == 'INT') |
|
| 511 | + if ($type == 'INTEGER' || $type == 'BIGINT' || $type == 'INT') |
|
| 512 | 512 | { |
| 513 | 513 | $query .= sprintf("default %d ", $default); |
| 514 | 514 | } |
@@ -518,7 +518,7 @@ discard block |
||
| 518 | 518 | } |
| 519 | 519 | } |
| 520 | 520 | |
| 521 | - if($notnull) |
|
| 521 | + if ($notnull) |
|
| 522 | 522 | { |
| 523 | 523 | $query .= "not null "; |
| 524 | 524 | } |
@@ -547,10 +547,10 @@ discard block |
||
| 547 | 547 | */ |
| 548 | 548 | function isColumnExists($table_name, $column_name) |
| 549 | 549 | { |
| 550 | - $query = sprintf("select \"attr_name\" from \"db_attribute\" where " . "\"attr_name\" ='%s' and \"class_name\" = '%s%s'", $column_name, $this->prefix, $table_name); |
|
| 550 | + $query = sprintf("select \"attr_name\" from \"db_attribute\" where "."\"attr_name\" ='%s' and \"class_name\" = '%s%s'", $column_name, $this->prefix, $table_name); |
|
| 551 | 551 | $result = $this->_query($query); |
| 552 | 552 | |
| 553 | - if(cubrid_num_rows($result) > 0) |
|
| 553 | + if (cubrid_num_rows($result) > 0) |
|
| 554 | 554 | { |
| 555 | 555 | $output = TRUE; |
| 556 | 556 | } |
@@ -559,7 +559,7 @@ discard block |
||
| 559 | 559 | $output = FALSE; |
| 560 | 560 | } |
| 561 | 561 | |
| 562 | - if($result) |
|
| 562 | + if ($result) |
|
| 563 | 563 | { |
| 564 | 564 | cubrid_close_request($result); |
| 565 | 565 | } |
@@ -579,12 +579,12 @@ discard block |
||
| 579 | 579 | */ |
| 580 | 580 | function addIndex($table_name, $index_name, $target_columns, $is_unique = FALSE) |
| 581 | 581 | { |
| 582 | - if(!is_array($target_columns)) |
|
| 582 | + if (!is_array($target_columns)) |
|
| 583 | 583 | { |
| 584 | 584 | $target_columns = array($target_columns); |
| 585 | 585 | } |
| 586 | 586 | |
| 587 | - $query = sprintf("create %s index \"%s\" on \"%s%s\" (%s);", $is_unique ? 'unique' : '', $index_name, $this->prefix, $table_name, '"' . implode('","', $target_columns) . '"'); |
|
| 587 | + $query = sprintf("create %s index \"%s\" on \"%s%s\" (%s);", $is_unique ? 'unique' : '', $index_name, $this->prefix, $table_name, '"'.implode('","', $target_columns).'"'); |
|
| 588 | 588 | |
| 589 | 589 | $this->_query($query); |
| 590 | 590 | } |
@@ -611,17 +611,17 @@ discard block |
||
| 611 | 611 | */ |
| 612 | 612 | function isIndexExists($table_name, $index_name) |
| 613 | 613 | { |
| 614 | - $query = sprintf("select \"index_name\" from \"db_index\" where " . "\"class_name\" = '%s%s' and (\"index_name\" = '%s' or \"index_name\" = '%s') ", $this->prefix, $table_name, $this->prefix . $index_name, $index_name); |
|
| 614 | + $query = sprintf("select \"index_name\" from \"db_index\" where "."\"class_name\" = '%s%s' and (\"index_name\" = '%s' or \"index_name\" = '%s') ", $this->prefix, $table_name, $this->prefix.$index_name, $index_name); |
|
| 615 | 615 | $result = $this->_query($query); |
| 616 | 616 | |
| 617 | - if($this->isError()) |
|
| 617 | + if ($this->isError()) |
|
| 618 | 618 | { |
| 619 | 619 | return FALSE; |
| 620 | 620 | } |
| 621 | 621 | |
| 622 | 622 | $output = $this->_fetch($result); |
| 623 | 623 | |
| 624 | - if(!$output) |
|
| 624 | + if (!$output) |
|
| 625 | 625 | { |
| 626 | 626 | return FALSE; |
| 627 | 627 | } |
@@ -653,25 +653,25 @@ discard block |
||
| 653 | 653 | ", strlen($this->prefix) |
| 654 | 654 | , $this->prefix |
| 655 | 655 | , strlen($this->prefix) + 1 |
| 656 | - , "'" . $this->prefix . '%' . "'" |
|
| 656 | + , "'".$this->prefix.'%'."'" |
|
| 657 | 657 | , strlen($this->prefix) |
| 658 | 658 | , $this->prefix |
| 659 | 659 | , strlen($this->prefix) + 1 |
| 660 | 660 | ); |
| 661 | 661 | $result = $this->_query($query); |
| 662 | 662 | |
| 663 | - if($this->isError()) |
|
| 663 | + if ($this->isError()) |
|
| 664 | 664 | { |
| 665 | 665 | return FALSE; |
| 666 | 666 | } |
| 667 | 667 | |
| 668 | 668 | $output = $this->_fetch($result); |
| 669 | - if(!$output) |
|
| 669 | + if (!$output) |
|
| 670 | 670 | { |
| 671 | 671 | return FALSE; |
| 672 | 672 | } |
| 673 | 673 | |
| 674 | - if(!is_array($output)) |
|
| 674 | + if (!is_array($output)) |
|
| 675 | 675 | { |
| 676 | 676 | $indexes_to_be_deleted = array($output); |
| 677 | 677 | } |
@@ -680,10 +680,10 @@ discard block |
||
| 680 | 680 | $indexes_to_be_deleted = $output; |
| 681 | 681 | } |
| 682 | 682 | |
| 683 | - foreach($indexes_to_be_deleted as $index) |
|
| 683 | + foreach ($indexes_to_be_deleted as $index) |
|
| 684 | 684 | { |
| 685 | 685 | $this->dropIndex(substr($index->class_name, strlen($this->prefix)) |
| 686 | - , $this->prefix . $index->unprefixed_index_name |
|
| 686 | + , $this->prefix.$index->unprefixed_index_name |
|
| 687 | 687 | , $index->is_unique == 'YES' ? TRUE : FALSE); |
| 688 | 688 | } |
| 689 | 689 | |
@@ -707,7 +707,7 @@ discard block |
||
| 707 | 707 | */ |
| 708 | 708 | function createTableByXmlFile($file_name) |
| 709 | 709 | { |
| 710 | - if(!file_exists($file_name)) |
|
| 710 | + if (!file_exists($file_name)) |
|
| 711 | 711 | { |
| 712 | 712 | return; |
| 713 | 713 | } |
@@ -734,28 +734,28 @@ discard block |
||
| 734 | 734 | $table_name = $xml_obj->table->attrs->name; |
| 735 | 735 | |
| 736 | 736 | // if the table already exists exit function |
| 737 | - if($this->isTableExists($table_name)) |
|
| 737 | + if ($this->isTableExists($table_name)) |
|
| 738 | 738 | { |
| 739 | 739 | return; |
| 740 | 740 | } |
| 741 | 741 | |
| 742 | 742 | // If the table name is sequence, it creates a serial |
| 743 | - if($table_name == 'sequence') |
|
| 743 | + if ($table_name == 'sequence') |
|
| 744 | 744 | { |
| 745 | - $query = sprintf('create serial "%s" start with 1 increment by 1' . |
|
| 746 | - ' minvalue 1 ' . |
|
| 747 | - 'maxvalue 10000000000000000000000000000000000000' . ' nocycle;', $this->prefix . $table_name); |
|
| 745 | + $query = sprintf('create serial "%s" start with 1 increment by 1'. |
|
| 746 | + ' minvalue 1 '. |
|
| 747 | + 'maxvalue 10000000000000000000000000000000000000'.' nocycle;', $this->prefix.$table_name); |
|
| 748 | 748 | |
| 749 | 749 | return $this->_query($query); |
| 750 | 750 | } |
| 751 | 751 | |
| 752 | 752 | |
| 753 | - $table_name = $this->prefix . $table_name; |
|
| 753 | + $table_name = $this->prefix.$table_name; |
|
| 754 | 754 | |
| 755 | 755 | $query = sprintf('create class "%s";', $table_name); |
| 756 | 756 | $this->_query($query); |
| 757 | 757 | |
| 758 | - if(!is_array($xml_obj->table->column)) |
|
| 758 | + if (!is_array($xml_obj->table->column)) |
|
| 759 | 759 | { |
| 760 | 760 | $columns[] = $xml_obj->table->column; |
| 761 | 761 | } |
@@ -770,7 +770,7 @@ discard block |
||
| 770 | 770 | $unique_list = array(); |
| 771 | 771 | $index_list = array(); |
| 772 | 772 | |
| 773 | - foreach($columns as $column) |
|
| 773 | + foreach ($columns as $column) |
|
| 774 | 774 | { |
| 775 | 775 | $name = $column->attrs->name; |
| 776 | 776 | $type = $column->attrs->type; |
@@ -781,7 +781,7 @@ discard block |
||
| 781 | 781 | $unique = $column->attrs->unique; |
| 782 | 782 | $default = $column->attrs->default; |
| 783 | 783 | |
| 784 | - switch($this->column_type[$type]) |
|
| 784 | + switch ($this->column_type[$type]) |
|
| 785 | 785 | { |
| 786 | 786 | case 'integer' : |
| 787 | 787 | $size = NULL; |
@@ -791,58 +791,58 @@ discard block |
||
| 791 | 791 | break; |
| 792 | 792 | } |
| 793 | 793 | |
| 794 | - if(isset($default) && ($type == 'varchar' || $type == 'char' || |
|
| 794 | + if (isset($default) && ($type == 'varchar' || $type == 'char' || |
|
| 795 | 795 | $type == 'text' || $type == 'tinytext' || $type == 'bigtext')) |
| 796 | 796 | { |
| 797 | 797 | $default = sprintf("'%s'", $default); |
| 798 | 798 | } |
| 799 | 799 | |
| 800 | - if($type == 'varchar' || $type == 'char') |
|
| 800 | + if ($type == 'varchar' || $type == 'char') |
|
| 801 | 801 | { |
| 802 | - if($size) |
|
| 802 | + if ($size) |
|
| 803 | 803 | $size = $size * 3; |
| 804 | 804 | } |
| 805 | 805 | |
| 806 | 806 | |
| 807 | - $column_schema[] = sprintf('"%s" %s%s %s %s', $name, $this->column_type[$type], $size ? '(' . $size . ')' : '', isset($default) ? "default " . $default : '', $notnull ? 'not null' : ''); |
|
| 807 | + $column_schema[] = sprintf('"%s" %s%s %s %s', $name, $this->column_type[$type], $size ? '('.$size.')' : '', isset($default) ? "default ".$default : '', $notnull ? 'not null' : ''); |
|
| 808 | 808 | |
| 809 | - if($primary_key) |
|
| 809 | + if ($primary_key) |
|
| 810 | 810 | { |
| 811 | 811 | $primary_list[] = $name; |
| 812 | 812 | } |
| 813 | - else if($unique) |
|
| 813 | + else if ($unique) |
|
| 814 | 814 | { |
| 815 | 815 | $unique_list[$unique][] = $name; |
| 816 | 816 | } |
| 817 | - else if($index) |
|
| 817 | + else if ($index) |
|
| 818 | 818 | { |
| 819 | 819 | $index_list[$index][] = $name; |
| 820 | 820 | } |
| 821 | 821 | } |
| 822 | 822 | |
| 823 | - $query .= implode(',', $column_schema) . ';'; |
|
| 823 | + $query .= implode(',', $column_schema).';'; |
|
| 824 | 824 | $this->_query($query); |
| 825 | 825 | |
| 826 | - if(count($primary_list)) |
|
| 826 | + if (count($primary_list)) |
|
| 827 | 827 | { |
| 828 | - $query = sprintf("alter class \"%s\" add attribute constraint " . "\"pkey_%s\" PRIMARY KEY(%s);", $table_name, $table_name, '"' . implode('","', $primary_list) . '"'); |
|
| 828 | + $query = sprintf("alter class \"%s\" add attribute constraint "."\"pkey_%s\" PRIMARY KEY(%s);", $table_name, $table_name, '"'.implode('","', $primary_list).'"'); |
|
| 829 | 829 | $this->_query($query); |
| 830 | 830 | } |
| 831 | 831 | |
| 832 | - if(count($unique_list)) |
|
| 832 | + if (count($unique_list)) |
|
| 833 | 833 | { |
| 834 | - foreach($unique_list as $key => $val) |
|
| 834 | + foreach ($unique_list as $key => $val) |
|
| 835 | 835 | { |
| 836 | - $query = sprintf("create unique index \"%s\" on \"%s\" " . "(%s);", $key, $table_name, '"' . implode('","', $val) . '"'); |
|
| 836 | + $query = sprintf("create unique index \"%s\" on \"%s\" "."(%s);", $key, $table_name, '"'.implode('","', $val).'"'); |
|
| 837 | 837 | $this->_query($query); |
| 838 | 838 | } |
| 839 | 839 | } |
| 840 | 840 | |
| 841 | - if(count($index_list)) |
|
| 841 | + if (count($index_list)) |
|
| 842 | 842 | { |
| 843 | - foreach($index_list as $key => $val) |
|
| 843 | + foreach ($index_list as $key => $val) |
|
| 844 | 844 | { |
| 845 | - $query = sprintf("create index \"%s\" on \"%s\" (%s);", $key, $table_name, '"' . implode('","', $val) . '"'); |
|
| 845 | + $query = sprintf("create index \"%s\" on \"%s\" (%s);", $key, $table_name, '"'.implode('","', $val).'"'); |
|
| 846 | 846 | $this->_query($query); |
| 847 | 847 | } |
| 848 | 848 | } |
@@ -856,22 +856,22 @@ discard block |
||
| 856 | 856 | */ |
| 857 | 857 | function _executeInsertAct($queryObject, $with_values = TRUE) |
| 858 | 858 | { |
| 859 | - if($this->use_prepared_statements == 'Y') |
|
| 859 | + if ($this->use_prepared_statements == 'Y') |
|
| 860 | 860 | { |
| 861 | 861 | $this->param = $queryObject->getArguments(); |
| 862 | 862 | $with_values = FALSE; |
| 863 | 863 | } |
| 864 | 864 | $query = $this->getInsertSql($queryObject, $with_values); |
| 865 | - if(is_a($query, 'Object')) |
|
| 865 | + if (is_a($query, 'Object')) |
|
| 866 | 866 | { |
| 867 | 867 | unset($this->param); |
| 868 | 868 | return; |
| 869 | 869 | } |
| 870 | 870 | |
| 871 | - $query .= (__DEBUG_QUERY__ & 1 && $this->query_id) ? sprintf(' ' . $this->comment_syntax, $this->query_id) : ''; |
|
| 871 | + $query .= (__DEBUG_QUERY__ & 1 && $this->query_id) ? sprintf(' '.$this->comment_syntax, $this->query_id) : ''; |
|
| 872 | 872 | |
| 873 | 873 | $result = $this->_query($query); |
| 874 | - if($result && !$this->transaction_started) |
|
| 874 | + if ($result && !$this->transaction_started) |
|
| 875 | 875 | { |
| 876 | 876 | $this->_commit(); |
| 877 | 877 | } |
@@ -887,23 +887,23 @@ discard block |
||
| 887 | 887 | */ |
| 888 | 888 | function _executeUpdateAct($queryObject, $with_values = TRUE) |
| 889 | 889 | { |
| 890 | - if($this->use_prepared_statements == 'Y') |
|
| 890 | + if ($this->use_prepared_statements == 'Y') |
|
| 891 | 891 | { |
| 892 | 892 | $this->param = $queryObject->getArguments(); |
| 893 | 893 | $with_values = FALSE; |
| 894 | 894 | } |
| 895 | 895 | $query = $this->getUpdateSql($queryObject, $with_values); |
| 896 | - if(is_a($query, 'Object')) |
|
| 896 | + if (is_a($query, 'Object')) |
|
| 897 | 897 | { |
| 898 | 898 | unset($this->param); |
| 899 | 899 | return; |
| 900 | 900 | } |
| 901 | 901 | |
| 902 | - $query .= (__DEBUG_QUERY__ & 1 && $this->query_id) ? sprintf(' ' . $this->comment_syntax, $this->query_id) : ''; |
|
| 902 | + $query .= (__DEBUG_QUERY__ & 1 && $this->query_id) ? sprintf(' '.$this->comment_syntax, $this->query_id) : ''; |
|
| 903 | 903 | |
| 904 | 904 | $result = $this->_query($query); |
| 905 | 905 | |
| 906 | - if($result && !$this->transaction_started) |
|
| 906 | + if ($result && !$this->transaction_started) |
|
| 907 | 907 | { |
| 908 | 908 | $this->_commit(); |
| 909 | 909 | } |
@@ -919,23 +919,23 @@ discard block |
||
| 919 | 919 | */ |
| 920 | 920 | function _executeDeleteAct($queryObject, $with_values = TRUE) |
| 921 | 921 | { |
| 922 | - if($this->use_prepared_statements == 'Y') |
|
| 922 | + if ($this->use_prepared_statements == 'Y') |
|
| 923 | 923 | { |
| 924 | 924 | $this->param = $queryObject->getArguments(); |
| 925 | 925 | $with_values = FALSE; |
| 926 | 926 | } |
| 927 | 927 | $query = $this->getDeleteSql($queryObject, $with_values); |
| 928 | - if(is_a($query, 'Object')) |
|
| 928 | + if (is_a($query, 'Object')) |
|
| 929 | 929 | { |
| 930 | 930 | unset($this->param); |
| 931 | 931 | return; |
| 932 | 932 | } |
| 933 | 933 | |
| 934 | - $query .= (__DEBUG_QUERY__ & 1 && $this->query_id) ? sprintf(' ' . $this->comment_syntax, $this->query_id) : ''; |
|
| 934 | + $query .= (__DEBUG_QUERY__ & 1 && $this->query_id) ? sprintf(' '.$this->comment_syntax, $this->query_id) : ''; |
|
| 935 | 935 | |
| 936 | 936 | $result = $this->_query($query); |
| 937 | 937 | |
| 938 | - if($result && !$this->transaction_started) |
|
| 938 | + if ($result && !$this->transaction_started) |
|
| 939 | 939 | { |
| 940 | 940 | $this->_commit(); |
| 941 | 941 | } |
@@ -955,36 +955,36 @@ discard block |
||
| 955 | 955 | */ |
| 956 | 956 | function _executeSelectAct($queryObject, $connection = NULL, $with_values = TRUE) |
| 957 | 957 | { |
| 958 | - if($this->use_prepared_statements == 'Y') |
|
| 958 | + if ($this->use_prepared_statements == 'Y') |
|
| 959 | 959 | { |
| 960 | 960 | $this->param = $queryObject->getArguments(); |
| 961 | 961 | $with_values = FALSE; |
| 962 | 962 | } |
| 963 | 963 | $limit = $queryObject->getLimit(); |
| 964 | - if($limit && $limit->isPageHandler()) |
|
| 964 | + if ($limit && $limit->isPageHandler()) |
|
| 965 | 965 | { |
| 966 | 966 | return $this->queryPageLimit($queryObject, $connection, $with_values); |
| 967 | 967 | } |
| 968 | 968 | else |
| 969 | 969 | { |
| 970 | 970 | $query = $this->getSelectSql($queryObject, $with_values); |
| 971 | - if(is_a($query, 'Object')) |
|
| 971 | + if (is_a($query, 'Object')) |
|
| 972 | 972 | { |
| 973 | 973 | unset($this->param); |
| 974 | 974 | return; |
| 975 | 975 | } |
| 976 | 976 | |
| 977 | - $query .= (__DEBUG_QUERY__ & 1 && $this->query_id) ? sprintf(' ' . $this->comment_syntax, $this->query_id) : ''; |
|
| 977 | + $query .= (__DEBUG_QUERY__ & 1 && $this->query_id) ? sprintf(' '.$this->comment_syntax, $this->query_id) : ''; |
|
| 978 | 978 | $result = $this->_query($query, $connection); |
| 979 | 979 | |
| 980 | - if($this->isError()) |
|
| 980 | + if ($this->isError()) |
|
| 981 | 981 | { |
| 982 | 982 | unset($this->param); |
| 983 | 983 | return $this->queryError($queryObject); |
| 984 | 984 | } |
| 985 | 985 | |
| 986 | 986 | $data = $this->_fetch($result); |
| 987 | - $buff = new Object (); |
|
| 987 | + $buff = new Object(); |
|
| 988 | 988 | $buff->data = $data; |
| 989 | 989 | |
| 990 | 990 | unset($this->param); |
@@ -1000,16 +1000,16 @@ discard block |
||
| 1000 | 1000 | function queryError($queryObject) |
| 1001 | 1001 | { |
| 1002 | 1002 | $limit = $queryObject->getLimit(); |
| 1003 | - if($limit && $limit->isPageHandler()) |
|
| 1003 | + if ($limit && $limit->isPageHandler()) |
|
| 1004 | 1004 | { |
| 1005 | - $buff = new Object (); |
|
| 1005 | + $buff = new Object(); |
|
| 1006 | 1006 | $buff->total_count = 0; |
| 1007 | 1007 | $buff->total_page = 0; |
| 1008 | 1008 | $buff->page = 1; |
| 1009 | 1009 | $buff->data = array(); |
| 1010 | 1010 | $buff->page_navigation = new PageHandler(/* $total_count */0, /* $total_page */1, /* $page */1, /* $page_count */10); //default page handler values |
| 1011 | 1011 | return $buff; |
| 1012 | - }else |
|
| 1012 | + } else |
|
| 1013 | 1013 | return; |
| 1014 | 1014 | } |
| 1015 | 1015 | |
@@ -1025,48 +1025,48 @@ discard block |
||
| 1025 | 1025 | $limit = $queryObject->getLimit(); |
| 1026 | 1026 | // Total count |
| 1027 | 1027 | $temp_where = $queryObject->getWhereString($with_values, FALSE); |
| 1028 | - $count_query = sprintf('select count(*) as "count" %s %s', 'FROM ' . $queryObject->getFromString($with_values), ($temp_where === '' ? '' : ' WHERE ' . $temp_where)); |
|
| 1028 | + $count_query = sprintf('select count(*) as "count" %s %s', 'FROM '.$queryObject->getFromString($with_values), ($temp_where === '' ? '' : ' WHERE '.$temp_where)); |
|
| 1029 | 1029 | |
| 1030 | 1030 | // Check for distinct query and if found update count query structure |
| 1031 | 1031 | $temp_select = $queryObject->getSelectString($with_values); |
| 1032 | 1032 | $uses_distinct = stripos($temp_select, "distinct") !== FALSE; |
| 1033 | 1033 | $uses_groupby = $queryObject->getGroupByString() != ''; |
| 1034 | - if($uses_distinct || $uses_groupby) |
|
| 1034 | + if ($uses_distinct || $uses_groupby) |
|
| 1035 | 1035 | { |
| 1036 | 1036 | $count_query = sprintf('select %s %s %s %s' |
| 1037 | 1037 | , $temp_select |
| 1038 | - , 'FROM ' . $queryObject->getFromString($with_values) |
|
| 1039 | - , ($temp_where === '' ? '' : ' WHERE ' . $temp_where) |
|
| 1040 | - , ($uses_groupby ? ' GROUP BY ' . $queryObject->getGroupByString() : '') |
|
| 1038 | + , 'FROM '.$queryObject->getFromString($with_values) |
|
| 1039 | + , ($temp_where === '' ? '' : ' WHERE '.$temp_where) |
|
| 1040 | + , ($uses_groupby ? ' GROUP BY '.$queryObject->getGroupByString() : '') |
|
| 1041 | 1041 | ); |
| 1042 | 1042 | |
| 1043 | 1043 | // If query uses grouping or distinct, count from original select |
| 1044 | 1044 | $count_query = sprintf('select count(*) as "count" from (%s) xet', $count_query); |
| 1045 | 1045 | } |
| 1046 | 1046 | |
| 1047 | - $count_query .= (__DEBUG_QUERY__ & 1 && $queryObject->queryID) ? sprintf(' ' . $this->comment_syntax, $queryObject->queryID) : ''; |
|
| 1047 | + $count_query .= (__DEBUG_QUERY__ & 1 && $queryObject->queryID) ? sprintf(' '.$this->comment_syntax, $queryObject->queryID) : ''; |
|
| 1048 | 1048 | $result = $this->_query($count_query, $connection); |
| 1049 | 1049 | $count_output = $this->_fetch($result); |
| 1050 | 1050 | $total_count = (int) (isset($count_output->count) ? $count_output->count : NULL); |
| 1051 | 1051 | |
| 1052 | 1052 | $list_count = $limit->list_count->getValue(); |
| 1053 | - if(!$list_count) |
|
| 1053 | + if (!$list_count) |
|
| 1054 | 1054 | { |
| 1055 | 1055 | $list_count = 20; |
| 1056 | 1056 | } |
| 1057 | 1057 | $page_count = $limit->page_count->getValue(); |
| 1058 | - if(!$page_count) |
|
| 1058 | + if (!$page_count) |
|
| 1059 | 1059 | { |
| 1060 | 1060 | $page_count = 10; |
| 1061 | 1061 | } |
| 1062 | 1062 | $page = $limit->page->getValue(); |
| 1063 | - if(!$page || $page < 1) |
|
| 1063 | + if (!$page || $page < 1) |
|
| 1064 | 1064 | { |
| 1065 | 1065 | $page = 1; |
| 1066 | 1066 | } |
| 1067 | 1067 | |
| 1068 | 1068 | // total pages |
| 1069 | - if($total_count) |
|
| 1069 | + if ($total_count) |
|
| 1070 | 1070 | { |
| 1071 | 1071 | $total_page = (int) (($total_count - 1) / $list_count) + 1; |
| 1072 | 1072 | } |
@@ -1076,11 +1076,11 @@ discard block |
||
| 1076 | 1076 | } |
| 1077 | 1077 | |
| 1078 | 1078 | // check the page variables |
| 1079 | - if($page > $total_page) |
|
| 1079 | + if ($page > $total_page) |
|
| 1080 | 1080 | { |
| 1081 | 1081 | // If requested page is bigger than total number of pages, return empty list |
| 1082 | 1082 | |
| 1083 | - $buff = new Object (); |
|
| 1083 | + $buff = new Object(); |
|
| 1084 | 1084 | $buff->total_count = $total_count; |
| 1085 | 1085 | $buff->total_page = $total_page; |
| 1086 | 1086 | $buff->page = $page; |
@@ -1092,9 +1092,9 @@ discard block |
||
| 1092 | 1092 | $start_count = ($page - 1) * $list_count; |
| 1093 | 1093 | |
| 1094 | 1094 | $query = $this->getSelectPageSql($queryObject, $with_values, $start_count, $list_count); |
| 1095 | - $query .= (__DEBUG_QUERY__ & 1 && $queryObject->query_id) ? sprintf(' ' . $this->comment_syntax, $this->query_id) : ''; |
|
| 1095 | + $query .= (__DEBUG_QUERY__ & 1 && $queryObject->query_id) ? sprintf(' '.$this->comment_syntax, $this->query_id) : ''; |
|
| 1096 | 1096 | $result = $this->_query($query, $connection); |
| 1097 | - if($this->isError()) |
|
| 1097 | + if ($this->isError()) |
|
| 1098 | 1098 | { |
| 1099 | 1099 | unset($this->param); |
| 1100 | 1100 | return $this->queryError($queryObject); |
@@ -1103,7 +1103,7 @@ discard block |
||
| 1103 | 1103 | $virtual_no = $total_count - ($page - 1) * $list_count; |
| 1104 | 1104 | $data = $this->_fetch($result, $virtual_no); |
| 1105 | 1105 | |
| 1106 | - $buff = new Object (); |
|
| 1106 | + $buff = new Object(); |
|
| 1107 | 1107 | $buff->total_count = $total_count; |
| 1108 | 1108 | $buff->total_page = $total_page; |
| 1109 | 1109 | $buff->page = $page; |
@@ -1135,44 +1135,44 @@ discard block |
||
| 1135 | 1135 | { |
| 1136 | 1136 | |
| 1137 | 1137 | $select = $query->getSelectString($with_values); |
| 1138 | - if($select == '') |
|
| 1138 | + if ($select == '') |
|
| 1139 | 1139 | { |
| 1140 | 1140 | return new Object(-1, "Invalid query"); |
| 1141 | 1141 | } |
| 1142 | - $select = 'SELECT ' . $select; |
|
| 1142 | + $select = 'SELECT '.$select; |
|
| 1143 | 1143 | |
| 1144 | 1144 | $from = $query->getFromString($with_values); |
| 1145 | - if($from == '') |
|
| 1145 | + if ($from == '') |
|
| 1146 | 1146 | { |
| 1147 | 1147 | return new Object(-1, "Invalid query"); |
| 1148 | 1148 | } |
| 1149 | - $from = ' FROM ' . $from; |
|
| 1149 | + $from = ' FROM '.$from; |
|
| 1150 | 1150 | |
| 1151 | 1151 | $where = $query->getWhereString($with_values); |
| 1152 | - if($where != '') |
|
| 1152 | + if ($where != '') |
|
| 1153 | 1153 | { |
| 1154 | - $where = ' WHERE ' . $where; |
|
| 1154 | + $where = ' WHERE '.$where; |
|
| 1155 | 1155 | } |
| 1156 | 1156 | |
| 1157 | 1157 | $groupBy = $query->getGroupByString(); |
| 1158 | - if($groupBy != '') |
|
| 1158 | + if ($groupBy != '') |
|
| 1159 | 1159 | { |
| 1160 | - $groupBy = ' GROUP BY ' . $groupBy; |
|
| 1160 | + $groupBy = ' GROUP BY '.$groupBy; |
|
| 1161 | 1161 | } |
| 1162 | 1162 | |
| 1163 | 1163 | $orderBy = $query->getOrderByString(); |
| 1164 | - if($orderBy != '') |
|
| 1164 | + if ($orderBy != '') |
|
| 1165 | 1165 | { |
| 1166 | - $orderBy = ' ORDER BY ' . $orderBy; |
|
| 1166 | + $orderBy = ' ORDER BY '.$orderBy; |
|
| 1167 | 1167 | } |
| 1168 | 1168 | |
| 1169 | 1169 | $limit = $query->getLimitString(); |
| 1170 | - if($limit != '') |
|
| 1170 | + if ($limit != '') |
|
| 1171 | 1171 | { |
| 1172 | 1172 | $limit = sprintf(' LIMIT %d, %d', $start_count, $list_count); |
| 1173 | 1173 | } |
| 1174 | 1174 | |
| 1175 | - return $select . ' ' . $from . ' ' . $where . ' ' . $groupBy . ' ' . $orderBy . ' ' . $limit; |
|
| 1175 | + return $select.' '.$from.' '.$where.' '.$groupBy.' '.$orderBy.' '.$limit; |
|
| 1176 | 1176 | } |
| 1177 | 1177 | |
| 1178 | 1178 | } |
@@ -52,7 +52,9 @@ discard block |
||
| 52 | 52 | function DBCubrid($auto_connect = TRUE) |
| 53 | 53 | { |
| 54 | 54 | $this->_setDBInfo(); |
| 55 | - if($auto_connect) $this->_connect(); |
|
| 55 | + if($auto_connect) { |
|
| 56 | + $this->_connect(); |
|
| 57 | + } |
|
| 56 | 58 | } |
| 57 | 59 | |
| 58 | 60 | /** |
@@ -90,8 +92,9 @@ discard block |
||
| 90 | 92 | define('__CUBRID_VERSION__', $cubrid_version); |
| 91 | 93 | } |
| 92 | 94 | |
| 93 | - if(__CUBRID_VERSION__ >= '8.4.0') |
|
| 94 | - cubrid_set_autocommit($result, CUBRID_AUTOCOMMIT_TRUE); |
|
| 95 | + if(__CUBRID_VERSION__ >= '8.4.0') { |
|
| 96 | + cubrid_set_autocommit($result, CUBRID_AUTOCOMMIT_TRUE); |
|
| 97 | + } |
|
| 95 | 98 | |
| 96 | 99 | return $result; |
| 97 | 100 | } |
@@ -153,8 +156,7 @@ discard block |
||
| 153 | 156 | if(!$transactionLevel) |
| 154 | 157 | { |
| 155 | 158 | cubrid_set_autocommit($connection, CUBRID_AUTOCOMMIT_FALSE); |
| 156 | - } |
|
| 157 | - else |
|
| 159 | + } else |
|
| 158 | 160 | { |
| 159 | 161 | $this->_query("SAVEPOINT SP" . $transactionLevel, $connection); |
| 160 | 162 | } |
@@ -176,8 +178,7 @@ discard block |
||
| 176 | 178 | if($point) |
| 177 | 179 | { |
| 178 | 180 | $this->_query("ROLLBACK TO SP" . $point, $connection); |
| 179 | - } |
|
| 180 | - else |
|
| 181 | + } else |
|
| 181 | 182 | { |
| 182 | 183 | @cubrid_rollback($connection); |
| 183 | 184 | } |
@@ -251,8 +252,7 @@ discard block |
||
| 251 | 252 | return false; |
| 252 | 253 | } |
| 253 | 254 | } |
| 254 | - } |
|
| 255 | - else |
|
| 255 | + } else |
|
| 256 | 256 | { |
| 257 | 257 | $bound = @cubrid_bind($req, ++$position, $value, $bind_type); |
| 258 | 258 | if(!$bound) |
@@ -343,8 +343,7 @@ discard block |
||
| 343 | 343 | if($arrayIndexEndValue) |
| 344 | 344 | { |
| 345 | 345 | $output[$arrayIndexEndValue--] = $tmp; |
| 346 | - } |
|
| 347 | - else |
|
| 346 | + } else |
|
| 348 | 347 | { |
| 349 | 348 | $output[] = $tmp; |
| 350 | 349 | } |
@@ -395,8 +394,9 @@ discard block |
||
| 395 | 394 | */ |
| 396 | 395 | function _makeSequence() |
| 397 | 396 | { |
| 398 | - if($_GLOBALS['XE_EXISTS_SEQUENCE']) |
|
| 399 | - return; |
|
| 397 | + if($_GLOBALS['XE_EXISTS_SEQUENCE']) { |
|
| 398 | + return; |
|
| 399 | + } |
|
| 400 | 400 | |
| 401 | 401 | // check cubrid serial |
| 402 | 402 | $query = sprintf('select count(*) as "count" from "db_serial" where name=\'%ssequence\'', $this->prefix); |
@@ -421,8 +421,7 @@ discard block |
||
| 421 | 421 | if($srl < 1) |
| 422 | 422 | { |
| 423 | 423 | $start = 1; |
| 424 | - } |
|
| 425 | - else |
|
| 424 | + } else |
|
| 426 | 425 | { |
| 427 | 426 | $start = $srl + 1000000; |
| 428 | 427 | } |
@@ -445,8 +444,7 @@ discard block |
||
| 445 | 444 | if($target_name == 'sequence') |
| 446 | 445 | { |
| 447 | 446 | $query = sprintf("select \"name\" from \"db_serial\" where \"name\" = '%s%s'", $this->prefix, $target_name); |
| 448 | - } |
|
| 449 | - else |
|
| 447 | + } else |
|
| 450 | 448 | { |
| 451 | 449 | $query = sprintf("select \"class_name\" from \"db_class\" where \"class_name\" = '%s%s'", $this->prefix, $target_name); |
| 452 | 450 | } |
@@ -455,8 +453,7 @@ discard block |
||
| 455 | 453 | if(cubrid_num_rows($result) > 0) |
| 456 | 454 | { |
| 457 | 455 | $output = TRUE; |
| 458 | - } |
|
| 459 | - else |
|
| 456 | + } else |
|
| 460 | 457 | { |
| 461 | 458 | $output = FALSE; |
| 462 | 459 | } |
@@ -500,8 +497,7 @@ discard block |
||
| 500 | 497 | if($size) |
| 501 | 498 | { |
| 502 | 499 | $query .= sprintf("%s(%s) ", $type, $size); |
| 503 | - } |
|
| 504 | - else |
|
| 500 | + } else |
|
| 505 | 501 | { |
| 506 | 502 | $query .= sprintf("%s ", $type); |
| 507 | 503 | } |
@@ -511,8 +507,7 @@ discard block |
||
| 511 | 507 | if($type == 'INTEGER' || $type == 'BIGINT' || $type == 'INT') |
| 512 | 508 | { |
| 513 | 509 | $query .= sprintf("default %d ", $default); |
| 514 | - } |
|
| 515 | - else |
|
| 510 | + } else |
|
| 516 | 511 | { |
| 517 | 512 | $query .= sprintf("default '%s' ", $default); |
| 518 | 513 | } |
@@ -553,8 +548,7 @@ discard block |
||
| 553 | 548 | if(cubrid_num_rows($result) > 0) |
| 554 | 549 | { |
| 555 | 550 | $output = TRUE; |
| 556 | - } |
|
| 557 | - else |
|
| 551 | + } else |
|
| 558 | 552 | { |
| 559 | 553 | $output = FALSE; |
| 560 | 554 | } |
@@ -674,8 +668,7 @@ discard block |
||
| 674 | 668 | if(!is_array($output)) |
| 675 | 669 | { |
| 676 | 670 | $indexes_to_be_deleted = array($output); |
| 677 | - } |
|
| 678 | - else |
|
| 671 | + } else |
|
| 679 | 672 | { |
| 680 | 673 | $indexes_to_be_deleted = $output; |
| 681 | 674 | } |
@@ -758,8 +751,7 @@ discard block |
||
| 758 | 751 | if(!is_array($xml_obj->table->column)) |
| 759 | 752 | { |
| 760 | 753 | $columns[] = $xml_obj->table->column; |
| 761 | - } |
|
| 762 | - else |
|
| 754 | + } else |
|
| 763 | 755 | { |
| 764 | 756 | $columns = $xml_obj->table->column; |
| 765 | 757 | } |
@@ -799,8 +791,9 @@ discard block |
||
| 799 | 791 | |
| 800 | 792 | if($type == 'varchar' || $type == 'char') |
| 801 | 793 | { |
| 802 | - if($size) |
|
| 803 | - $size = $size * 3; |
|
| 794 | + if($size) { |
|
| 795 | + $size = $size * 3; |
|
| 796 | + } |
|
| 804 | 797 | } |
| 805 | 798 | |
| 806 | 799 | |
@@ -809,12 +802,10 @@ discard block |
||
| 809 | 802 | if($primary_key) |
| 810 | 803 | { |
| 811 | 804 | $primary_list[] = $name; |
| 812 | - } |
|
| 813 | - else if($unique) |
|
| 805 | + } else if($unique) |
|
| 814 | 806 | { |
| 815 | 807 | $unique_list[$unique][] = $name; |
| 816 | - } |
|
| 817 | - else if($index) |
|
| 808 | + } else if($index) |
|
| 818 | 809 | { |
| 819 | 810 | $index_list[$index][] = $name; |
| 820 | 811 | } |
@@ -964,8 +955,7 @@ discard block |
||
| 964 | 955 | if($limit && $limit->isPageHandler()) |
| 965 | 956 | { |
| 966 | 957 | return $this->queryPageLimit($queryObject, $connection, $with_values); |
| 967 | - } |
|
| 968 | - else |
|
| 958 | + } else |
|
| 969 | 959 | { |
| 970 | 960 | $query = $this->getSelectSql($queryObject, $with_values); |
| 971 | 961 | if(is_a($query, 'Object')) |
@@ -1009,8 +999,9 @@ discard block |
||
| 1009 | 999 | $buff->data = array(); |
| 1010 | 1000 | $buff->page_navigation = new PageHandler(/* $total_count */0, /* $total_page */1, /* $page */1, /* $page_count */10); //default page handler values |
| 1011 | 1001 | return $buff; |
| 1012 | - }else |
|
| 1013 | - return; |
|
| 1002 | + } else { |
|
| 1003 | + return; |
|
| 1004 | + } |
|
| 1014 | 1005 | } |
| 1015 | 1006 | |
| 1016 | 1007 | /** |
@@ -1069,8 +1060,7 @@ discard block |
||
| 1069 | 1060 | if($total_count) |
| 1070 | 1061 | { |
| 1071 | 1062 | $total_page = (int) (($total_count - 1) / $list_count) + 1; |
| 1072 | - } |
|
| 1073 | - else |
|
| 1063 | + } else |
|
| 1074 | 1064 | { |
| 1075 | 1065 | $total_page = 1; |
| 1076 | 1066 | } |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | function DBMysqli($auto_connect = TRUE) |
| 24 | 24 | { |
| 25 | 25 | $this->_setDBInfo(); |
| 26 | - if($auto_connect) $this->_connect(); |
|
| 26 | + if ($auto_connect) $this->_connect(); |
|
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | /** |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | function __connect($connection) |
| 45 | 45 | { |
| 46 | 46 | // Attempt to connect |
| 47 | - if($connection["db_port"]) |
|
| 47 | + if ($connection["db_port"]) |
|
| 48 | 48 | { |
| 49 | 49 | $result = @mysqli_connect($connection["db_hostname"] |
| 50 | 50 | , $connection["db_userid"] |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | , $connection["db_database"]); |
| 61 | 61 | } |
| 62 | 62 | $error = mysqli_connect_errno(); |
| 63 | - if($error) |
|
| 63 | + if ($error) |
|
| 64 | 64 | { |
| 65 | 65 | $this->setError($error, mysqli_connect_error()); |
| 66 | 66 | return; |
@@ -87,11 +87,11 @@ discard block |
||
| 87 | 87 | */ |
| 88 | 88 | function addQuotes($string) |
| 89 | 89 | { |
| 90 | - if(version_compare(PHP_VERSION, "5.4.0", "<") && get_magic_quotes_gpc()) |
|
| 90 | + if (version_compare(PHP_VERSION, "5.4.0", "<") && get_magic_quotes_gpc()) |
|
| 91 | 91 | { |
| 92 | 92 | $string = stripslashes(str_replace("\\", "\\\\", $string)); |
| 93 | 93 | } |
| 94 | - if(!is_numeric($string)) |
|
| 94 | + if (!is_numeric($string)) |
|
| 95 | 95 | { |
| 96 | 96 | $connection = $this->_getConnection('master'); |
| 97 | 97 | $string = mysqli_escape_string($connection, $string); |
@@ -108,23 +108,23 @@ discard block |
||
| 108 | 108 | */ |
| 109 | 109 | function __query($query, $connection) |
| 110 | 110 | { |
| 111 | - if($this->use_prepared_statements == 'Y') |
|
| 111 | + if ($this->use_prepared_statements == 'Y') |
|
| 112 | 112 | { |
| 113 | 113 | // 1. Prepare query |
| 114 | 114 | $stmt = mysqli_prepare($connection, $query); |
| 115 | - if($stmt) |
|
| 115 | + if ($stmt) |
|
| 116 | 116 | { |
| 117 | 117 | $types = ''; |
| 118 | 118 | $params = array(); |
| 119 | 119 | $this->_prepareQueryParameters($types, $params); |
| 120 | 120 | |
| 121 | - if(!empty($params)) |
|
| 121 | + if (!empty($params)) |
|
| 122 | 122 | { |
| 123 | 123 | $args[0] = $stmt; |
| 124 | 124 | $args[1] = $types; |
| 125 | 125 | |
| 126 | 126 | $i = 2; |
| 127 | - foreach($params as $key => $param) |
|
| 127 | + foreach ($params as $key => $param) |
|
| 128 | 128 | { |
| 129 | 129 | $copy[$key] = $param; |
| 130 | 130 | $args[$i++] = &$copy[$key]; |
@@ -132,18 +132,18 @@ discard block |
||
| 132 | 132 | |
| 133 | 133 | // 2. Bind parameters |
| 134 | 134 | $status = call_user_func_array('mysqli_stmt_bind_param', $args); |
| 135 | - if(!$status) |
|
| 135 | + if (!$status) |
|
| 136 | 136 | { |
| 137 | - $this->setError(-1, "Invalid arguments: $query" . mysqli_error($connection) . PHP_EOL . print_r($args, true)); |
|
| 137 | + $this->setError(-1, "Invalid arguments: $query".mysqli_error($connection).PHP_EOL.print_r($args, true)); |
|
| 138 | 138 | } |
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | // 3. Execute query |
| 142 | 142 | $status = mysqli_stmt_execute($stmt); |
| 143 | 143 | |
| 144 | - if(!$status) |
|
| 144 | + if (!$status) |
|
| 145 | 145 | { |
| 146 | - $this->setError(-1, "Prepared statement failed: $query" . mysqli_error($connection) . PHP_EOL . print_r($args, true)); |
|
| 146 | + $this->setError(-1, "Prepared statement failed: $query".mysqli_error($connection).PHP_EOL.print_r($args, true)); |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | 149 | // Return stmt for other processing - like retrieving resultset (_fetch) |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | $result = mysqli_query($connection, $query); |
| 156 | 156 | // Error Check |
| 157 | 157 | $error = mysqli_error($connection); |
| 158 | - if($error) |
|
| 158 | + if ($error) |
|
| 159 | 159 | { |
| 160 | 160 | $this->setError(mysqli_errno($connection), $error); |
| 161 | 161 | } |
@@ -174,23 +174,23 @@ discard block |
||
| 174 | 174 | { |
| 175 | 175 | $types = ''; |
| 176 | 176 | $params = array(); |
| 177 | - if(!$this->param) |
|
| 177 | + if (!$this->param) |
|
| 178 | 178 | { |
| 179 | 179 | return; |
| 180 | 180 | } |
| 181 | 181 | |
| 182 | - foreach($this->param as $k => $o) |
|
| 182 | + foreach ($this->param as $k => $o) |
|
| 183 | 183 | { |
| 184 | 184 | $value = $o->getUnescapedValue(); |
| 185 | 185 | $type = $o->getType(); |
| 186 | 186 | |
| 187 | 187 | // Skip column names -> this should be concatenated to query string |
| 188 | - if($o->isColumnName()) |
|
| 188 | + if ($o->isColumnName()) |
|
| 189 | 189 | { |
| 190 | 190 | continue; |
| 191 | 191 | } |
| 192 | 192 | |
| 193 | - switch($type) |
|
| 193 | + switch ($type) |
|
| 194 | 194 | { |
| 195 | 195 | case 'number' : |
| 196 | 196 | $type = 'i'; |
@@ -202,9 +202,9 @@ discard block |
||
| 202 | 202 | $type = 's'; |
| 203 | 203 | } |
| 204 | 204 | |
| 205 | - if(is_array($value)) |
|
| 205 | + if (is_array($value)) |
|
| 206 | 206 | { |
| 207 | - foreach($value as $v) |
|
| 207 | + foreach ($value as $v) |
|
| 208 | 208 | { |
| 209 | 209 | $params[] = $v; |
| 210 | 210 | $types .= $type; |
@@ -226,12 +226,12 @@ discard block |
||
| 226 | 226 | */ |
| 227 | 227 | function _fetch($result, $arrayIndexEndValue = NULL) |
| 228 | 228 | { |
| 229 | - if($this->use_prepared_statements != 'Y') |
|
| 229 | + if ($this->use_prepared_statements != 'Y') |
|
| 230 | 230 | { |
| 231 | 231 | return parent::_fetch($result, $arrayIndexEndValue); |
| 232 | 232 | } |
| 233 | 233 | $output = array(); |
| 234 | - if(!$this->isConnected() || $this->isError() || !$result) |
|
| 234 | + if (!$this->isConnected() || $this->isError() || !$result) |
|
| 235 | 235 | { |
| 236 | 236 | return $output; |
| 237 | 237 | } |
@@ -247,25 +247,25 @@ discard block |
||
| 247 | 247 | * MYSQLI_TYPE for longtext is 252 |
| 248 | 248 | */ |
| 249 | 249 | $longtext_exists = false; |
| 250 | - foreach($fields as $field) |
|
| 250 | + foreach ($fields as $field) |
|
| 251 | 251 | { |
| 252 | - if(isset($resultArray[$field->name])) // When joined tables are used and the same column name appears twice, we should add it separately, otherwise bind_result fails |
|
| 252 | + if (isset($resultArray[$field->name])) // When joined tables are used and the same column name appears twice, we should add it separately, otherwise bind_result fails |
|
| 253 | 253 | { |
| 254 | - $field->name = 'repeat_' . $field->name; |
|
| 254 | + $field->name = 'repeat_'.$field->name; |
|
| 255 | 255 | } |
| 256 | 256 | |
| 257 | 257 | // Array passed needs to contain references, not values |
| 258 | 258 | $row[$field->name] = ""; |
| 259 | 259 | $resultArray[$field->name] = &$row[$field->name]; |
| 260 | 260 | |
| 261 | - if($field->type == 252) |
|
| 261 | + if ($field->type == 252) |
|
| 262 | 262 | { |
| 263 | 263 | $longtext_exists = true; |
| 264 | 264 | } |
| 265 | 265 | } |
| 266 | 266 | $resultArray = array_merge(array($stmt), $resultArray); |
| 267 | 267 | |
| 268 | - if($longtext_exists) |
|
| 268 | + if ($longtext_exists) |
|
| 269 | 269 | { |
| 270 | 270 | mysqli_stmt_store_result($stmt); |
| 271 | 271 | } |
@@ -273,17 +273,17 @@ discard block |
||
| 273 | 273 | call_user_func_array('mysqli_stmt_bind_result', $resultArray); |
| 274 | 274 | |
| 275 | 275 | $rows = array(); |
| 276 | - while(mysqli_stmt_fetch($stmt)) |
|
| 276 | + while (mysqli_stmt_fetch($stmt)) |
|
| 277 | 277 | { |
| 278 | 278 | $resultObject = new stdClass(); |
| 279 | 279 | |
| 280 | - foreach($resultArray as $key => $value) |
|
| 280 | + foreach ($resultArray as $key => $value) |
|
| 281 | 281 | { |
| 282 | - if($key === 0) |
|
| 282 | + if ($key === 0) |
|
| 283 | 283 | { |
| 284 | 284 | continue; // Skip stmt object |
| 285 | 285 | } |
| 286 | - if(strpos($key, 'repeat_')) |
|
| 286 | + if (strpos($key, 'repeat_')) |
|
| 287 | 287 | { |
| 288 | 288 | $key = substr($key, 6); |
| 289 | 289 | } |
@@ -295,9 +295,9 @@ discard block |
||
| 295 | 295 | |
| 296 | 296 | mysqli_stmt_close($stmt); |
| 297 | 297 | |
| 298 | - if($arrayIndexEndValue) |
|
| 298 | + if ($arrayIndexEndValue) |
|
| 299 | 299 | { |
| 300 | - foreach($rows as $row) |
|
| 300 | + foreach ($rows as $row) |
|
| 301 | 301 | { |
| 302 | 302 | $output[$arrayIndexEndValue--] = $row; |
| 303 | 303 | } |
@@ -307,9 +307,9 @@ discard block |
||
| 307 | 307 | $output = $rows; |
| 308 | 308 | } |
| 309 | 309 | |
| 310 | - if(count($output) == 1) |
|
| 310 | + if (count($output) == 1) |
|
| 311 | 311 | { |
| 312 | - if(isset($arrayIndexEndValue)) |
|
| 312 | + if (isset($arrayIndexEndValue)) |
|
| 313 | 313 | { |
| 314 | 314 | return $output; |
| 315 | 315 | } |
@@ -330,7 +330,7 @@ discard block |
||
| 330 | 330 | */ |
| 331 | 331 | function _executeInsertAct($queryObject, $with_values = false) |
| 332 | 332 | { |
| 333 | - if($this->use_prepared_statements != 'Y') |
|
| 333 | + if ($this->use_prepared_statements != 'Y') |
|
| 334 | 334 | { |
| 335 | 335 | return parent::_executeInsertAct($queryObject); |
| 336 | 336 | } |
@@ -348,7 +348,7 @@ discard block |
||
| 348 | 348 | */ |
| 349 | 349 | function _executeUpdateAct($queryObject, $with_values = false) |
| 350 | 350 | { |
| 351 | - if($this->use_prepared_statements != 'Y') |
|
| 351 | + if ($this->use_prepared_statements != 'Y') |
|
| 352 | 352 | { |
| 353 | 353 | return parent::_executeUpdateAct($queryObject); |
| 354 | 354 | } |
@@ -366,7 +366,7 @@ discard block |
||
| 366 | 366 | */ |
| 367 | 367 | function _executeDeleteAct($queryObject, $with_values = false) |
| 368 | 368 | { |
| 369 | - if($this->use_prepared_statements != 'Y') |
|
| 369 | + if ($this->use_prepared_statements != 'Y') |
|
| 370 | 370 | { |
| 371 | 371 | return parent::_executeDeleteAct($queryObject); |
| 372 | 372 | } |
@@ -387,7 +387,7 @@ discard block |
||
| 387 | 387 | */ |
| 388 | 388 | function _executeSelectAct($queryObject, $connection = null, $with_values = false) |
| 389 | 389 | { |
| 390 | - if($this->use_prepared_statements != 'Y') |
|
| 390 | + if ($this->use_prepared_statements != 'Y') |
|
| 391 | 391 | { |
| 392 | 392 | return parent::_executeSelectAct($queryObject, $connection); |
| 393 | 393 | } |
@@ -23,7 +23,9 @@ discard block |
||
| 23 | 23 | function DBMysqli($auto_connect = TRUE) |
| 24 | 24 | { |
| 25 | 25 | $this->_setDBInfo(); |
| 26 | - if($auto_connect) $this->_connect(); |
|
| 26 | + if($auto_connect) { |
|
| 27 | + $this->_connect(); |
|
| 28 | + } |
|
| 27 | 29 | } |
| 28 | 30 | |
| 29 | 31 | /** |
@@ -51,8 +53,7 @@ discard block |
||
| 51 | 53 | , $connection["db_password"] |
| 52 | 54 | , $connection["db_database"] |
| 53 | 55 | , $connection["db_port"]); |
| 54 | - } |
|
| 55 | - else |
|
| 56 | + } else |
|
| 56 | 57 | { |
| 57 | 58 | $result = @mysqli_connect($connection["db_hostname"] |
| 58 | 59 | , $connection["db_userid"] |
@@ -209,8 +210,7 @@ discard block |
||
| 209 | 210 | $params[] = $v; |
| 210 | 211 | $types .= $type; |
| 211 | 212 | } |
| 212 | - } |
|
| 213 | - else |
|
| 213 | + } else |
|
| 214 | 214 | { |
| 215 | 215 | $params[] = $value; |
| 216 | 216 | $types .= $type; |
@@ -249,10 +249,12 @@ discard block |
||
| 249 | 249 | $longtext_exists = false; |
| 250 | 250 | foreach($fields as $field) |
| 251 | 251 | { |
| 252 | - if(isset($resultArray[$field->name])) // When joined tables are used and the same column name appears twice, we should add it separately, otherwise bind_result fails |
|
| 252 | + if(isset($resultArray[$field->name])) { |
|
| 253 | + // When joined tables are used and the same column name appears twice, we should add it separately, otherwise bind_result fails |
|
| 253 | 254 | { |
| 254 | 255 | $field->name = 'repeat_' . $field->name; |
| 255 | 256 | } |
| 257 | + } |
|
| 256 | 258 | |
| 257 | 259 | // Array passed needs to contain references, not values |
| 258 | 260 | $row[$field->name] = ""; |
@@ -301,8 +303,7 @@ discard block |
||
| 301 | 303 | { |
| 302 | 304 | $output[$arrayIndexEndValue--] = $row; |
| 303 | 305 | } |
| 304 | - } |
|
| 305 | - else |
|
| 306 | + } else |
|
| 306 | 307 | { |
| 307 | 308 | $output = $rows; |
| 308 | 309 | } |
@@ -312,8 +313,7 @@ discard block |
||
| 312 | 313 | if(isset($arrayIndexEndValue)) |
| 313 | 314 | { |
| 314 | 315 | return $output; |
| 315 | - } |
|
| 316 | - else |
|
| 316 | + } else |
|
| 317 | 317 | { |
| 318 | 318 | return $output[0]; |
| 319 | 319 | } |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | function DBMssql($auto_connect = TRUE) |
| 46 | 46 | { |
| 47 | 47 | $this->_setDBInfo(); |
| 48 | - if($auto_connect) $this->_connect(); |
|
| 48 | + if ($auto_connect) $this->_connect(); |
|
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | /** |
@@ -70,10 +70,10 @@ discard block |
||
| 70 | 70 | //sqlsrv_configure( 'LogSubsystems', SQLSRV_LOG_SYSTEM_ALL ); |
| 71 | 71 | $result = @sqlsrv_connect($connection["db_hostname"], array('Database' => $connection["db_database"], 'UID' => $connection["db_userid"], 'PWD' => $connection["db_password"])); |
| 72 | 72 | |
| 73 | - if(!$result) |
|
| 73 | + if (!$result) |
|
| 74 | 74 | { |
| 75 | 75 | $errors = print_r(sqlsrv_errors(), true); |
| 76 | - $this->setError(-1, 'database connect fail' . PHP_EOL . $errors); |
|
| 76 | + $this->setError(-1, 'database connect fail'.PHP_EOL.$errors); |
|
| 77 | 77 | return; |
| 78 | 78 | } |
| 79 | 79 | return $result; |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | */ |
| 100 | 100 | function addQuotes($string) |
| 101 | 101 | { |
| 102 | - if(version_compare(PHP_VERSION, "5.4.0", "<") && get_magic_quotes_gpc()) |
|
| 102 | + if (version_compare(PHP_VERSION, "5.4.0", "<") && get_magic_quotes_gpc()) |
|
| 103 | 103 | { |
| 104 | 104 | $string = stripslashes(str_replace("\\", "\\\\", $string)); |
| 105 | 105 | } |
@@ -117,16 +117,16 @@ discard block |
||
| 117 | 117 | { |
| 118 | 118 | $connection = $this->_getConnection('master'); |
| 119 | 119 | |
| 120 | - if(!$transactionLevel) |
|
| 120 | + if (!$transactionLevel) |
|
| 121 | 121 | { |
| 122 | - if(sqlsrv_begin_transaction($connection) === false) |
|
| 122 | + if (sqlsrv_begin_transaction($connection) === false) |
|
| 123 | 123 | { |
| 124 | 124 | return; |
| 125 | 125 | } |
| 126 | 126 | } |
| 127 | 127 | else |
| 128 | 128 | { |
| 129 | - $this->_query("SAVE TRANS SP" . $transactionLevel, $connection); |
|
| 129 | + $this->_query("SAVE TRANS SP".$transactionLevel, $connection); |
|
| 130 | 130 | } |
| 131 | 131 | return true; |
| 132 | 132 | } |
@@ -142,9 +142,9 @@ discard block |
||
| 142 | 142 | |
| 143 | 143 | $point = $transactionLevel - 1; |
| 144 | 144 | |
| 145 | - if($point) |
|
| 145 | + if ($point) |
|
| 146 | 146 | { |
| 147 | - $this->_query("ROLLBACK TRANS SP" . $point, $connection); |
|
| 147 | + $this->_query("ROLLBACK TRANS SP".$point, $connection); |
|
| 148 | 148 | } |
| 149 | 149 | else |
| 150 | 150 | { |
@@ -176,18 +176,18 @@ discard block |
||
| 176 | 176 | { |
| 177 | 177 | $_param = array(); |
| 178 | 178 | |
| 179 | - if(count($this->param)) |
|
| 179 | + if (count($this->param)) |
|
| 180 | 180 | { |
| 181 | - foreach($this->param as $k => $o) |
|
| 181 | + foreach ($this->param as $k => $o) |
|
| 182 | 182 | { |
| 183 | - if($o->isColumnName()) |
|
| 183 | + if ($o->isColumnName()) |
|
| 184 | 184 | { |
| 185 | 185 | continue; |
| 186 | 186 | } |
| 187 | - if($o->getType() == 'number') |
|
| 187 | + if ($o->getType() == 'number') |
|
| 188 | 188 | { |
| 189 | 189 | $value = $o->getUnescapedValue(); |
| 190 | - if(is_array($value)) |
|
| 190 | + if (is_array($value)) |
|
| 191 | 191 | { |
| 192 | 192 | $_param = array_merge($_param, $value); |
| 193 | 193 | } |
@@ -199,9 +199,9 @@ discard block |
||
| 199 | 199 | else |
| 200 | 200 | { |
| 201 | 201 | $value = $o->getUnescapedValue(); |
| 202 | - if(is_array($value)) |
|
| 202 | + if (is_array($value)) |
|
| 203 | 203 | { |
| 204 | - foreach($value as $v) |
|
| 204 | + foreach ($value as $v) |
|
| 205 | 205 | { |
| 206 | 206 | $_param[] = array($v, SQLSRV_PARAM_IN, SQLSRV_PHPTYPE_STRING('utf-8')); |
| 207 | 207 | } |
@@ -216,7 +216,7 @@ discard block |
||
| 216 | 216 | |
| 217 | 217 | // Run the query statement |
| 218 | 218 | $result = false; |
| 219 | - if(count($_param)) |
|
| 219 | + if (count($_param)) |
|
| 220 | 220 | { |
| 221 | 221 | $args = $this->_getParametersByReference($_param); |
| 222 | 222 | $stmt = sqlsrv_prepare($connection, $query, $args); |
@@ -226,7 +226,7 @@ discard block |
||
| 226 | 226 | $stmt = sqlsrv_prepare($connection, $query); |
| 227 | 227 | } |
| 228 | 228 | |
| 229 | - if(!$stmt) |
|
| 229 | + if (!$stmt) |
|
| 230 | 230 | { |
| 231 | 231 | $result = false; |
| 232 | 232 | } |
@@ -236,7 +236,7 @@ discard block |
||
| 236 | 236 | } |
| 237 | 237 | |
| 238 | 238 | // Error Check |
| 239 | - if(!$result) |
|
| 239 | + if (!$result) |
|
| 240 | 240 | { |
| 241 | 241 | $this->setError(print_r(sqlsrv_errors(), true)); |
| 242 | 242 | } |
@@ -259,9 +259,9 @@ discard block |
||
| 259 | 259 | $copy = array(); |
| 260 | 260 | $args = array(); |
| 261 | 261 | $i = 0; |
| 262 | - foreach($_param as $key => $value) |
|
| 262 | + foreach ($_param as $key => $value) |
|
| 263 | 263 | { |
| 264 | - if(is_array($value)) |
|
| 264 | + if (is_array($value)) |
|
| 265 | 265 | { |
| 266 | 266 | $value_copy = $value; |
| 267 | 267 | $value_arg = array(); |
@@ -288,7 +288,7 @@ discard block |
||
| 288 | 288 | function _fetch($result, $arrayIndexEndValue = NULL) |
| 289 | 289 | { |
| 290 | 290 | $output = array(); |
| 291 | - if(!$this->isConnected() || $this->isError() || !$result) |
|
| 291 | + if (!$this->isConnected() || $this->isError() || !$result) |
|
| 292 | 292 | { |
| 293 | 293 | return $output; |
| 294 | 294 | } |
@@ -296,18 +296,18 @@ discard block |
||
| 296 | 296 | $c = sqlsrv_num_fields($result); |
| 297 | 297 | $m = null; |
| 298 | 298 | |
| 299 | - while(sqlsrv_fetch($result)) |
|
| 299 | + while (sqlsrv_fetch($result)) |
|
| 300 | 300 | { |
| 301 | - if(!$m) |
|
| 301 | + if (!$m) |
|
| 302 | 302 | { |
| 303 | 303 | $m = sqlsrv_field_metadata($result); |
| 304 | 304 | } |
| 305 | 305 | unset($row); |
| 306 | - for($i = 0; $i < $c; $i++) |
|
| 306 | + for ($i = 0; $i < $c; $i++) |
|
| 307 | 307 | { |
| 308 | 308 | $row->{$m[$i]['Name']} = sqlsrv_get_field($result, $i, SQLSRV_PHPTYPE_STRING('utf-8')); |
| 309 | 309 | } |
| 310 | - if($arrayIndexEndValue) |
|
| 310 | + if ($arrayIndexEndValue) |
|
| 311 | 311 | { |
| 312 | 312 | $output[$arrayIndexEndValue--] = $row; |
| 313 | 313 | } |
@@ -317,9 +317,9 @@ discard block |
||
| 317 | 317 | } |
| 318 | 318 | } |
| 319 | 319 | |
| 320 | - if(count($output) == 1) |
|
| 320 | + if (count($output) == 1) |
|
| 321 | 321 | { |
| 322 | - if(isset($arrayIndexEndValue)) |
|
| 322 | + if (isset($arrayIndexEndValue)) |
|
| 323 | 323 | { |
| 324 | 324 | return $output; |
| 325 | 325 | } |
@@ -360,7 +360,7 @@ discard block |
||
| 360 | 360 | $result = $this->_query($query); |
| 361 | 361 | $tmp = $this->_fetch($result); |
| 362 | 362 | |
| 363 | - if(!$tmp) |
|
| 363 | + if (!$tmp) |
|
| 364 | 364 | { |
| 365 | 365 | return false; |
| 366 | 366 | } |
@@ -379,18 +379,18 @@ discard block |
||
| 379 | 379 | */ |
| 380 | 380 | function addColumn($table_name, $column_name, $type = 'number', $size = '', $default = null, $notnull = false) |
| 381 | 381 | { |
| 382 | - if($this->isColumnExists($table_name, $column_name)) |
|
| 382 | + if ($this->isColumnExists($table_name, $column_name)) |
|
| 383 | 383 | { |
| 384 | 384 | return; |
| 385 | 385 | } |
| 386 | 386 | $type = $this->column_type[$type]; |
| 387 | - if(strtoupper($type) == 'INTEGER') |
|
| 387 | + if (strtoupper($type) == 'INTEGER') |
|
| 388 | 388 | { |
| 389 | 389 | $size = ''; |
| 390 | 390 | } |
| 391 | 391 | |
| 392 | 392 | $query = sprintf("alter table %s%s add %s ", $this->prefix, $table_name, $column_name); |
| 393 | - if($size) |
|
| 393 | + if ($size) |
|
| 394 | 394 | { |
| 395 | 395 | $query .= sprintf(" %s(%s) ", $type, $size); |
| 396 | 396 | } |
@@ -399,11 +399,11 @@ discard block |
||
| 399 | 399 | $query .= sprintf(" %s ", $type); |
| 400 | 400 | } |
| 401 | 401 | |
| 402 | - if(isset($default)) |
|
| 402 | + if (isset($default)) |
|
| 403 | 403 | { |
| 404 | 404 | $query .= sprintf(" default '%s' ", $default); |
| 405 | 405 | } |
| 406 | - if($notnull) |
|
| 406 | + if ($notnull) |
|
| 407 | 407 | { |
| 408 | 408 | $query .= " not null "; |
| 409 | 409 | } |
@@ -419,7 +419,7 @@ discard block |
||
| 419 | 419 | */ |
| 420 | 420 | function dropColumn($table_name, $column_name) |
| 421 | 421 | { |
| 422 | - if(!$this->isColumnExists($table_name, $column_name)) |
|
| 422 | + if (!$this->isColumnExists($table_name, $column_name)) |
|
| 423 | 423 | { |
| 424 | 424 | return; |
| 425 | 425 | } |
@@ -437,12 +437,12 @@ discard block |
||
| 437 | 437 | { |
| 438 | 438 | $query = sprintf("select syscolumns.name as name from syscolumns, sysobjects where sysobjects.name = '%s%s' and sysobjects.id = syscolumns.id and syscolumns.name = '%s'", $this->prefix, $table_name, $column_name); |
| 439 | 439 | $result = $this->_query($query); |
| 440 | - if($this->isError()) |
|
| 440 | + if ($this->isError()) |
|
| 441 | 441 | { |
| 442 | 442 | return; |
| 443 | 443 | } |
| 444 | 444 | $tmp = $this->_fetch($result); |
| 445 | - if(!$tmp->name) |
|
| 445 | + if (!$tmp->name) |
|
| 446 | 446 | { |
| 447 | 447 | return false; |
| 448 | 448 | } |
@@ -461,11 +461,11 @@ discard block |
||
| 461 | 461 | */ |
| 462 | 462 | function addIndex($table_name, $index_name, $target_columns, $is_unique = false) |
| 463 | 463 | { |
| 464 | - if($this->isIndexExists($table_name, $index_name)) |
|
| 464 | + if ($this->isIndexExists($table_name, $index_name)) |
|
| 465 | 465 | { |
| 466 | 466 | return; |
| 467 | 467 | } |
| 468 | - if(!is_array($target_columns)) |
|
| 468 | + if (!is_array($target_columns)) |
|
| 469 | 469 | { |
| 470 | 470 | $target_columns = array($target_columns); |
| 471 | 471 | } |
@@ -483,7 +483,7 @@ discard block |
||
| 483 | 483 | */ |
| 484 | 484 | function dropIndex($table_name, $index_name, $is_unique = false) |
| 485 | 485 | { |
| 486 | - if(!$this->isIndexExists($table_name, $index_name)) |
|
| 486 | + if (!$this->isIndexExists($table_name, $index_name)) |
|
| 487 | 487 | { |
| 488 | 488 | return; |
| 489 | 489 | } |
@@ -502,13 +502,13 @@ discard block |
||
| 502 | 502 | $query = sprintf("select sysindexes.name as name from sysindexes, sysobjects where sysobjects.name = '%s%s' and sysobjects.id = sysindexes.id and sysindexes.name = '%s'", $this->prefix, $table_name, $index_name); |
| 503 | 503 | |
| 504 | 504 | $result = $this->_query($query); |
| 505 | - if($this->isError()) |
|
| 505 | + if ($this->isError()) |
|
| 506 | 506 | { |
| 507 | 507 | return; |
| 508 | 508 | } |
| 509 | 509 | $tmp = $this->_fetch($result); |
| 510 | 510 | |
| 511 | - if(!$tmp->name) |
|
| 511 | + if (!$tmp->name) |
|
| 512 | 512 | { |
| 513 | 513 | return false; |
| 514 | 514 | } |
@@ -532,7 +532,7 @@ discard block |
||
| 532 | 532 | */ |
| 533 | 533 | function createTableByXmlFile($file_name) |
| 534 | 534 | { |
| 535 | - if(!file_exists($file_name)) |
|
| 535 | + if (!file_exists($file_name)) |
|
| 536 | 536 | { |
| 537 | 537 | return; |
| 538 | 538 | } |
@@ -557,22 +557,22 @@ discard block |
||
| 557 | 557 | $xml_obj = $oXml->parse($xml_doc); |
| 558 | 558 | // Create a table schema |
| 559 | 559 | $table_name = $xml_obj->table->attrs->name; |
| 560 | - if($this->isTableExists($table_name)) |
|
| 560 | + if ($this->isTableExists($table_name)) |
|
| 561 | 561 | { |
| 562 | 562 | return; |
| 563 | 563 | } |
| 564 | 564 | |
| 565 | - if($table_name == 'sequence') |
|
| 565 | + if ($table_name == 'sequence') |
|
| 566 | 566 | { |
| 567 | - $table_name = $this->prefix . $table_name; |
|
| 567 | + $table_name = $this->prefix.$table_name; |
|
| 568 | 568 | $query = sprintf('create table %s ( sequence int identity(1,1), seq int )', $table_name); |
| 569 | 569 | return $this->_query($query); |
| 570 | 570 | } |
| 571 | 571 | else |
| 572 | 572 | { |
| 573 | - $table_name = $this->prefix . $table_name; |
|
| 573 | + $table_name = $this->prefix.$table_name; |
|
| 574 | 574 | |
| 575 | - if(!is_array($xml_obj->table->column)) |
|
| 575 | + if (!is_array($xml_obj->table->column)) |
|
| 576 | 576 | { |
| 577 | 577 | $columns[] = $xml_obj->table->column; |
| 578 | 578 | } |
@@ -586,7 +586,7 @@ discard block |
||
| 586 | 586 | $index_list = array(); |
| 587 | 587 | |
| 588 | 588 | $typeList = array('number' => 1, 'text' => 1); |
| 589 | - foreach($columns as $column) |
|
| 589 | + foreach ($columns as $column) |
|
| 590 | 590 | { |
| 591 | 591 | $name = $column->attrs->name; |
| 592 | 592 | $type = $column->attrs->type; |
@@ -598,48 +598,48 @@ discard block |
||
| 598 | 598 | $default = $column->attrs->default; |
| 599 | 599 | $auto_increment = $column->attrs->auto_increment; |
| 600 | 600 | |
| 601 | - $column_schema[] = sprintf('[%s] %s%s %s %s %s', $name, $this->column_type[$type], !isset($typeList[$type]) && $size ? '(' . $size . ')' : '', isset($default) ? "default '" . $default . "'" : '', $notnull ? 'not null' : 'null', $auto_increment ? 'identity(1,1)' : ''); |
|
| 601 | + $column_schema[] = sprintf('[%s] %s%s %s %s %s', $name, $this->column_type[$type], !isset($typeList[$type]) && $size ? '('.$size.')' : '', isset($default) ? "default '".$default."'" : '', $notnull ? 'not null' : 'null', $auto_increment ? 'identity(1,1)' : ''); |
|
| 602 | 602 | |
| 603 | - if($primary_key) |
|
| 603 | + if ($primary_key) |
|
| 604 | 604 | { |
| 605 | 605 | $primary_list[] = $name; |
| 606 | 606 | } |
| 607 | - else if($unique) |
|
| 607 | + else if ($unique) |
|
| 608 | 608 | { |
| 609 | 609 | $unique_list[$unique][] = $name; |
| 610 | 610 | } |
| 611 | - else if($index) |
|
| 611 | + else if ($index) |
|
| 612 | 612 | { |
| 613 | 613 | $index_list[$index][] = $name; |
| 614 | 614 | } |
| 615 | 615 | } |
| 616 | 616 | |
| 617 | - if(count($primary_list)) |
|
| 617 | + if (count($primary_list)) |
|
| 618 | 618 | { |
| 619 | - $column_schema[] = sprintf("primary key (%s)", '"' . implode($primary_list, '","') . '"'); |
|
| 619 | + $column_schema[] = sprintf("primary key (%s)", '"'.implode($primary_list, '","').'"'); |
|
| 620 | 620 | } |
| 621 | 621 | |
| 622 | 622 | $schema = sprintf('create table [%s] (%s%s)', $this->addQuotes($table_name), "\n", implode($column_schema, ",\n")); |
| 623 | 623 | $output = $this->_query($schema); |
| 624 | - if(!$output) |
|
| 624 | + if (!$output) |
|
| 625 | 625 | { |
| 626 | 626 | return false; |
| 627 | 627 | } |
| 628 | 628 | |
| 629 | - if(count($unique_list)) |
|
| 629 | + if (count($unique_list)) |
|
| 630 | 630 | { |
| 631 | - foreach($unique_list as $key => $val) |
|
| 631 | + foreach ($unique_list as $key => $val) |
|
| 632 | 632 | { |
| 633 | - $query = sprintf("create unique index %s on %s (%s);", $key, $table_name, '[' . implode('],[', $val) . ']'); |
|
| 633 | + $query = sprintf("create unique index %s on %s (%s);", $key, $table_name, '['.implode('],[', $val).']'); |
|
| 634 | 634 | $this->_query($query); |
| 635 | 635 | } |
| 636 | 636 | } |
| 637 | 637 | |
| 638 | - if(count($index_list)) |
|
| 638 | + if (count($index_list)) |
|
| 639 | 639 | { |
| 640 | - foreach($index_list as $key => $val) |
|
| 640 | + foreach ($index_list as $key => $val) |
|
| 641 | 641 | { |
| 642 | - $query = sprintf("create index %s on %s (%s);", $key, $table_name, '[' . implode('],[', $val) . ']'); |
|
| 642 | + $query = sprintf("create index %s on %s (%s);", $key, $table_name, '['.implode('],[', $val).']'); |
|
| 643 | 643 | $this->_query($query); |
| 644 | 644 | } |
| 645 | 645 | } |
@@ -682,34 +682,34 @@ discard block |
||
| 682 | 682 | function getUpdateSql($query, $with_values = true, $with_priority = false) |
| 683 | 683 | { |
| 684 | 684 | $columnsList = $query->getUpdateString($with_values); |
| 685 | - if($columnsList == '') |
|
| 685 | + if ($columnsList == '') |
|
| 686 | 686 | { |
| 687 | 687 | return new Object(-1, "Invalid query"); |
| 688 | 688 | } |
| 689 | 689 | |
| 690 | 690 | $from = $query->getFromString($with_values); |
| 691 | - if($from == '') |
|
| 691 | + if ($from == '') |
|
| 692 | 692 | { |
| 693 | 693 | return new Object(-1, "Invalid query"); |
| 694 | 694 | } |
| 695 | 695 | |
| 696 | 696 | $tables = $query->getTables(); |
| 697 | 697 | $alias_list = ''; |
| 698 | - foreach($tables as $table) |
|
| 698 | + foreach ($tables as $table) |
|
| 699 | 699 | { |
| 700 | 700 | $alias_list .= $table->getAlias(); |
| 701 | 701 | } |
| 702 | 702 | implode(',', explode(' ', $alias_list)); |
| 703 | 703 | |
| 704 | 704 | $where = $query->getWhereString($with_values); |
| 705 | - if($where != '') |
|
| 705 | + if ($where != '') |
|
| 706 | 706 | { |
| 707 | - $where = ' WHERE ' . $where; |
|
| 707 | + $where = ' WHERE '.$where; |
|
| 708 | 708 | } |
| 709 | 709 | |
| 710 | 710 | $priority = $with_priority ? $query->getPriority() : ''; |
| 711 | 711 | |
| 712 | - return "UPDATE $priority $alias_list SET $columnsList FROM " . $from . $where; |
|
| 712 | + return "UPDATE $priority $alias_list SET $columnsList FROM ".$from.$where; |
|
| 713 | 713 | } |
| 714 | 714 | |
| 715 | 715 | /** |
@@ -730,7 +730,7 @@ discard block |
||
| 730 | 730 | * @param boolean $with_values |
| 731 | 731 | * @return string |
| 732 | 732 | */ |
| 733 | - function getSelectSql($query, $with_values = TRUE, $connection=NULL) |
|
| 733 | + function getSelectSql($query, $with_values = TRUE, $connection = NULL) |
|
| 734 | 734 | { |
| 735 | 735 | $with_values = false; |
| 736 | 736 | |
@@ -740,75 +740,75 @@ discard block |
||
| 740 | 740 | $limit = ''; |
| 741 | 741 | $limitCount = ''; |
| 742 | 742 | $limitQueryPart = $query->getLimit(); |
| 743 | - if($limitQueryPart) |
|
| 743 | + if ($limitQueryPart) |
|
| 744 | 744 | { |
| 745 | 745 | $limitCount = $limitQueryPart->getLimit(); |
| 746 | 746 | } |
| 747 | - if($limitCount != '') |
|
| 747 | + if ($limitCount != '') |
|
| 748 | 748 | { |
| 749 | - $limit = 'SELECT TOP ' . $limitCount; |
|
| 749 | + $limit = 'SELECT TOP '.$limitCount; |
|
| 750 | 750 | } |
| 751 | 751 | |
| 752 | 752 | $select = $query->getSelectString($with_values); |
| 753 | - if($select == '') |
|
| 753 | + if ($select == '') |
|
| 754 | 754 | { |
| 755 | 755 | return new Object(-1, "Invalid query"); |
| 756 | 756 | } |
| 757 | - if($limit != '') |
|
| 757 | + if ($limit != '') |
|
| 758 | 758 | { |
| 759 | - $select = $limit . ' ' . $select; |
|
| 759 | + $select = $limit.' '.$select; |
|
| 760 | 760 | } |
| 761 | 761 | else |
| 762 | 762 | { |
| 763 | - $select = 'SELECT ' . $select; |
|
| 763 | + $select = 'SELECT '.$select; |
|
| 764 | 764 | } |
| 765 | 765 | |
| 766 | 766 | $from = $query->getFromString($with_values); |
| 767 | - if($from == '') |
|
| 767 | + if ($from == '') |
|
| 768 | 768 | { |
| 769 | 769 | return new Object(-1, "Invalid query"); |
| 770 | 770 | } |
| 771 | - $from = ' FROM ' . $from; |
|
| 771 | + $from = ' FROM '.$from; |
|
| 772 | 772 | |
| 773 | 773 | $where = $query->getWhereString($with_values); |
| 774 | - if($where != '') |
|
| 774 | + if ($where != '') |
|
| 775 | 775 | { |
| 776 | - $where = ' WHERE ' . $where; |
|
| 776 | + $where = ' WHERE '.$where; |
|
| 777 | 777 | } |
| 778 | 778 | |
| 779 | 779 | $groupBy = $query->getGroupByString(); |
| 780 | - if($groupBy != '') |
|
| 780 | + if ($groupBy != '') |
|
| 781 | 781 | { |
| 782 | - $groupBy = ' GROUP BY ' . $groupBy; |
|
| 782 | + $groupBy = ' GROUP BY '.$groupBy; |
|
| 783 | 783 | } |
| 784 | 784 | |
| 785 | 785 | $orderBy = $query->getOrderByString(); |
| 786 | - if($orderBy != '') |
|
| 786 | + if ($orderBy != '') |
|
| 787 | 787 | { |
| 788 | - $orderBy = ' ORDER BY ' . $orderBy; |
|
| 788 | + $orderBy = ' ORDER BY '.$orderBy; |
|
| 789 | 789 | } |
| 790 | 790 | |
| 791 | - if($limitCount != '' && $query->limit->start > 0) |
|
| 791 | + if ($limitCount != '' && $query->limit->start > 0) |
|
| 792 | 792 | { |
| 793 | 793 | $order = $query->getOrder(); |
| 794 | 794 | $first_columns = array(); |
| 795 | - foreach($order as $val) |
|
| 795 | + foreach ($order as $val) |
|
| 796 | 796 | { |
| 797 | 797 | $tmpColumnName = $val->getPureColumnName(); |
| 798 | - $first_columns[] = sprintf('%s(%s) as %s', $val->getPureSortOrder()=='asc'?'max':'min', $tmpColumnName, $tmpColumnName); |
|
| 798 | + $first_columns[] = sprintf('%s(%s) as %s', $val->getPureSortOrder() == 'asc' ? 'max' : 'min', $tmpColumnName, $tmpColumnName); |
|
| 799 | 799 | $first_sub_columns[] = $tmpColumnName; |
| 800 | 800 | } |
| 801 | 801 | |
| 802 | - $first_query = sprintf("select %s from (select top %d %s %s %s %s %s) xet", implode(',',$first_columns), $query->limit->start, implode(',',$first_sub_columns), $from, $where, $groupBy, $orderBy); |
|
| 802 | + $first_query = sprintf("select %s from (select top %d %s %s %s %s %s) xet", implode(',', $first_columns), $query->limit->start, implode(',', $first_sub_columns), $from, $where, $groupBy, $orderBy); |
|
| 803 | 803 | $this->param = $query->getArguments(); |
| 804 | 804 | $result = $this->__query($first_query, $connection); |
| 805 | 805 | $tmp = $this->_fetch($result); |
| 806 | 806 | |
| 807 | 807 | $sub_cond = array(); |
| 808 | - foreach($order as $k => $v) |
|
| 808 | + foreach ($order as $k => $v) |
|
| 809 | 809 | { |
| 810 | 810 | //for example... use Document |
| 811 | - if(get_class($v->sort_order) == 'SortArgument') |
|
| 811 | + if (get_class($v->sort_order) == 'SortArgument') |
|
| 812 | 812 | { |
| 813 | 813 | $sort_order = $v->sort_order->value; |
| 814 | 814 | } |
@@ -818,19 +818,19 @@ discard block |
||
| 818 | 818 | $sort_order = $v->sort_order; |
| 819 | 819 | } |
| 820 | 820 | |
| 821 | - $sub_cond[] = sprintf("%s %s '%s'", $v->getPureColumnName(), $sort_order=='asc'?'>':'<', $tmp->{$v->getPureColumnName()}); |
|
| 821 | + $sub_cond[] = sprintf("%s %s '%s'", $v->getPureColumnName(), $sort_order == 'asc' ? '>' : '<', $tmp->{$v->getPureColumnName()}); |
|
| 822 | 822 | } |
| 823 | 823 | |
| 824 | - if(!$where) |
|
| 824 | + if (!$where) |
|
| 825 | 825 | { |
| 826 | - $sub_condition = ' WHERE ( '.implode(' and ',$sub_cond).' )'; |
|
| 826 | + $sub_condition = ' WHERE ( '.implode(' and ', $sub_cond).' )'; |
|
| 827 | 827 | } |
| 828 | 828 | else |
| 829 | 829 | { |
| 830 | - $sub_condition = ' and ( '.implode(' and ',$sub_cond).' )'; |
|
| 830 | + $sub_condition = ' and ( '.implode(' and ', $sub_cond).' )'; |
|
| 831 | 831 | } |
| 832 | 832 | } |
| 833 | - return $select . ' ' . $from . ' ' . $where .$sub_condition. ' ' . $groupBy . ' ' . $orderBy; |
|
| 833 | + return $select.' '.$from.' '.$where.$sub_condition.' '.$groupBy.' '.$orderBy; |
|
| 834 | 834 | } |
| 835 | 835 | |
| 836 | 836 | /** |
@@ -845,7 +845,7 @@ discard block |
||
| 845 | 845 | { |
| 846 | 846 | $query = $this->getSelectSql($queryObject, true, $connection); |
| 847 | 847 | |
| 848 | - if(strpos($query, "substr")) |
|
| 848 | + if (strpos($query, "substr")) |
|
| 849 | 849 | { |
| 850 | 850 | $query = str_replace("substr", "substring", $query); |
| 851 | 851 | } |
@@ -853,10 +853,10 @@ discard block |
||
| 853 | 853 | // TODO Decide if we continue to pass parameters like this |
| 854 | 854 | $this->param = $queryObject->getArguments(); |
| 855 | 855 | |
| 856 | - $query .= (__DEBUG_QUERY__ & 1 && $output->query_id) ? sprintf(' ' . $this->comment_syntax, $this->query_id) : ''; |
|
| 856 | + $query .= (__DEBUG_QUERY__ & 1 && $output->query_id) ? sprintf(' '.$this->comment_syntax, $this->query_id) : ''; |
|
| 857 | 857 | $result = $this->_query($query, $connection); |
| 858 | 858 | |
| 859 | - if($this->isError()) |
|
| 859 | + if ($this->isError()) |
|
| 860 | 860 | { |
| 861 | 861 | return $this->queryError($queryObject); |
| 862 | 862 | } |
@@ -884,9 +884,9 @@ discard block |
||
| 884 | 884 | function queryError($queryObject) |
| 885 | 885 | { |
| 886 | 886 | $limit = $queryObject->getLimit(); |
| 887 | - if($limit && $limit->isPageHandler()) |
|
| 887 | + if ($limit && $limit->isPageHandler()) |
|
| 888 | 888 | { |
| 889 | - $buff = new Object (); |
|
| 889 | + $buff = new Object(); |
|
| 890 | 890 | $buff->total_count = 0; |
| 891 | 891 | $buff->total_page = 0; |
| 892 | 892 | $buff->page = 1; |
@@ -910,52 +910,52 @@ discard block |
||
| 910 | 910 | function queryPageLimit($queryObject, $result, $connection) |
| 911 | 911 | { |
| 912 | 912 | $limit = $queryObject->getLimit(); |
| 913 | - if($limit && $limit->isPageHandler()) |
|
| 913 | + if ($limit && $limit->isPageHandler()) |
|
| 914 | 914 | { |
| 915 | 915 | // Total count |
| 916 | 916 | $temp_where = $queryObject->getWhereString(true, false); |
| 917 | - $count_query = sprintf('select count(*) as "count" %s %s', 'FROM ' . $queryObject->getFromString(), ($temp_where === '' ? '' : ' WHERE ' . $temp_where)); |
|
| 917 | + $count_query = sprintf('select count(*) as "count" %s %s', 'FROM '.$queryObject->getFromString(), ($temp_where === '' ? '' : ' WHERE '.$temp_where)); |
|
| 918 | 918 | |
| 919 | 919 | // Check for distinct query and if found update count query structure |
| 920 | 920 | $temp_select = $queryObject->getSelectString(true); |
| 921 | 921 | $uses_distinct = stripos($temp_select, "distinct") !== false; |
| 922 | 922 | $uses_groupby = $queryObject->getGroupByString() != ''; |
| 923 | - if($uses_distinct || $uses_groupby) |
|
| 923 | + if ($uses_distinct || $uses_groupby) |
|
| 924 | 924 | { |
| 925 | 925 | $count_query = sprintf('select %s %s %s %s' |
| 926 | 926 | , $temp_select |
| 927 | - , 'FROM ' . $queryObject->getFromString(true) |
|
| 928 | - , ($temp_where === '' ? '' : ' WHERE ' . $temp_where) |
|
| 929 | - , ($uses_groupby ? ' GROUP BY ' . $queryObject->getGroupByString() : '') |
|
| 927 | + , 'FROM '.$queryObject->getFromString(true) |
|
| 928 | + , ($temp_where === '' ? '' : ' WHERE '.$temp_where) |
|
| 929 | + , ($uses_groupby ? ' GROUP BY '.$queryObject->getGroupByString() : '') |
|
| 930 | 930 | ); |
| 931 | 931 | |
| 932 | 932 | // If query uses grouping or distinct, count from original select |
| 933 | 933 | $count_query = sprintf('select count(*) as "count" from (%s) xet', $count_query); |
| 934 | 934 | } |
| 935 | 935 | |
| 936 | - $count_query .= (__DEBUG_QUERY__ & 1 && $queryObject->queryID) ? sprintf(' ' . $this->comment_syntax, $this->query_id) : ''; |
|
| 936 | + $count_query .= (__DEBUG_QUERY__ & 1 && $queryObject->queryID) ? sprintf(' '.$this->comment_syntax, $this->query_id) : ''; |
|
| 937 | 937 | $this->param = $queryObject->getArguments(); |
| 938 | 938 | $result_count = $this->_query($count_query, $connection); |
| 939 | 939 | $count_output = $this->_fetch($result_count); |
| 940 | 940 | $total_count = (int) $count_output->count; |
| 941 | 941 | |
| 942 | 942 | $list_count = $limit->list_count->getValue(); |
| 943 | - if(!$list_count) |
|
| 943 | + if (!$list_count) |
|
| 944 | 944 | { |
| 945 | 945 | $list_count = 20; |
| 946 | 946 | } |
| 947 | 947 | $page_count = $limit->page_count->getValue(); |
| 948 | - if(!$page_count) |
|
| 948 | + if (!$page_count) |
|
| 949 | 949 | { |
| 950 | 950 | $page_count = 10; |
| 951 | 951 | } |
| 952 | 952 | $page = $limit->page->getValue(); |
| 953 | - if(!$page || $page < 1) |
|
| 953 | + if (!$page || $page < 1) |
|
| 954 | 954 | { |
| 955 | 955 | $page = 1; |
| 956 | 956 | } |
| 957 | 957 | // Total pages |
| 958 | - if($total_count) |
|
| 958 | + if ($total_count) |
|
| 959 | 959 | { |
| 960 | 960 | $total_page = (int) (($total_count - 1) / $list_count) + 1; |
| 961 | 961 | } |
@@ -965,11 +965,11 @@ discard block |
||
| 965 | 965 | } |
| 966 | 966 | |
| 967 | 967 | // check the page variables |
| 968 | - if($page > $total_page) |
|
| 968 | + if ($page > $total_page) |
|
| 969 | 969 | { |
| 970 | 970 | // If requested page is bigger than total number of pages, return empty list |
| 971 | 971 | |
| 972 | - $buff = new Object (); |
|
| 972 | + $buff = new Object(); |
|
| 973 | 973 | $buff->total_count = $total_count; |
| 974 | 974 | $buff->total_page = $total_page; |
| 975 | 975 | $buff->page = $page; |
@@ -977,7 +977,7 @@ discard block |
||
| 977 | 977 | $buff->page_navigation = new PageHandler($total_count, $total_page, $page, $page_count); |
| 978 | 978 | return $buff; |
| 979 | 979 | |
| 980 | - if($queryObject->usesClickCount()) |
|
| 980 | + if ($queryObject->usesClickCount()) |
|
| 981 | 981 | { |
| 982 | 982 | $update_query = $this->getClickCountQuery($queryObject); |
| 983 | 983 | $this->_executeUpdateAct($update_query); |
@@ -989,7 +989,7 @@ discard block |
||
| 989 | 989 | $virtual_no = $total_count - $start_count; |
| 990 | 990 | $data = $this->_fetch($result, $virtual_no); |
| 991 | 991 | |
| 992 | - $buff = new Object (); |
|
| 992 | + $buff = new Object(); |
|
| 993 | 993 | $buff->total_count = $total_count; |
| 994 | 994 | $buff->total_page = $total_page; |
| 995 | 995 | $buff->page = $page; |
@@ -999,7 +999,7 @@ discard block |
||
| 999 | 999 | else |
| 1000 | 1000 | { |
| 1001 | 1001 | $data = $this->_fetch($result); |
| 1002 | - $buff = new Object (); |
|
| 1002 | + $buff = new Object(); |
|
| 1003 | 1003 | $buff->data = $data; |
| 1004 | 1004 | } |
| 1005 | 1005 | return $buff; |
@@ -45,7 +45,9 @@ discard block |
||
| 45 | 45 | function DBMssql($auto_connect = TRUE) |
| 46 | 46 | { |
| 47 | 47 | $this->_setDBInfo(); |
| 48 | - if($auto_connect) $this->_connect(); |
|
| 48 | + if($auto_connect) { |
|
| 49 | + $this->_connect(); |
|
| 50 | + } |
|
| 49 | 51 | } |
| 50 | 52 | |
| 51 | 53 | /** |
@@ -123,8 +125,7 @@ discard block |
||
| 123 | 125 | { |
| 124 | 126 | return; |
| 125 | 127 | } |
| 126 | - } |
|
| 127 | - else |
|
| 128 | + } else |
|
| 128 | 129 | { |
| 129 | 130 | $this->_query("SAVE TRANS SP" . $transactionLevel, $connection); |
| 130 | 131 | } |
@@ -145,8 +146,7 @@ discard block |
||
| 145 | 146 | if($point) |
| 146 | 147 | { |
| 147 | 148 | $this->_query("ROLLBACK TRANS SP" . $point, $connection); |
| 148 | - } |
|
| 149 | - else |
|
| 149 | + } else |
|
| 150 | 150 | { |
| 151 | 151 | sqlsrv_rollback($connection); |
| 152 | 152 | } |
@@ -190,13 +190,11 @@ discard block |
||
| 190 | 190 | if(is_array($value)) |
| 191 | 191 | { |
| 192 | 192 | $_param = array_merge($_param, $value); |
| 193 | - } |
|
| 194 | - else |
|
| 193 | + } else |
|
| 195 | 194 | { |
| 196 | 195 | $_param[] = $o->getUnescapedValue(); |
| 197 | 196 | } |
| 198 | - } |
|
| 199 | - else |
|
| 197 | + } else |
|
| 200 | 198 | { |
| 201 | 199 | $value = $o->getUnescapedValue(); |
| 202 | 200 | if(is_array($value)) |
@@ -205,8 +203,7 @@ discard block |
||
| 205 | 203 | { |
| 206 | 204 | $_param[] = array($v, SQLSRV_PARAM_IN, SQLSRV_PHPTYPE_STRING('utf-8')); |
| 207 | 205 | } |
| 208 | - } |
|
| 209 | - else |
|
| 206 | + } else |
|
| 210 | 207 | { |
| 211 | 208 | $_param[] = array($value, SQLSRV_PARAM_IN, SQLSRV_PHPTYPE_STRING('utf-8')); |
| 212 | 209 | } |
@@ -220,8 +217,7 @@ discard block |
||
| 220 | 217 | { |
| 221 | 218 | $args = $this->_getParametersByReference($_param); |
| 222 | 219 | $stmt = sqlsrv_prepare($connection, $query, $args); |
| 223 | - } |
|
| 224 | - else |
|
| 220 | + } else |
|
| 225 | 221 | { |
| 226 | 222 | $stmt = sqlsrv_prepare($connection, $query); |
| 227 | 223 | } |
@@ -229,8 +225,7 @@ discard block |
||
| 229 | 225 | if(!$stmt) |
| 230 | 226 | { |
| 231 | 227 | $result = false; |
| 232 | - } |
|
| 233 | - else |
|
| 228 | + } else |
|
| 234 | 229 | { |
| 235 | 230 | $result = sqlsrv_execute($stmt); |
| 236 | 231 | } |
@@ -268,8 +263,7 @@ discard block |
||
| 268 | 263 | $value_arg[] = &$value_copy[0]; |
| 269 | 264 | $value_arg[] = $value_copy[1]; |
| 270 | 265 | $value_arg[] = $value_copy[2]; |
| 271 | - } |
|
| 272 | - else |
|
| 266 | + } else |
|
| 273 | 267 | { |
| 274 | 268 | $value_arg = $value; |
| 275 | 269 | } |
@@ -310,8 +304,7 @@ discard block |
||
| 310 | 304 | if($arrayIndexEndValue) |
| 311 | 305 | { |
| 312 | 306 | $output[$arrayIndexEndValue--] = $row; |
| 313 | - } |
|
| 314 | - else |
|
| 307 | + } else |
|
| 315 | 308 | { |
| 316 | 309 | $output[] = $row; |
| 317 | 310 | } |
@@ -322,8 +315,7 @@ discard block |
||
| 322 | 315 | if(isset($arrayIndexEndValue)) |
| 323 | 316 | { |
| 324 | 317 | return $output; |
| 325 | - } |
|
| 326 | - else |
|
| 318 | + } else |
|
| 327 | 319 | { |
| 328 | 320 | return $output[0]; |
| 329 | 321 | } |
@@ -393,8 +385,7 @@ discard block |
||
| 393 | 385 | if($size) |
| 394 | 386 | { |
| 395 | 387 | $query .= sprintf(" %s(%s) ", $type, $size); |
| 396 | - } |
|
| 397 | - else |
|
| 388 | + } else |
|
| 398 | 389 | { |
| 399 | 390 | $query .= sprintf(" %s ", $type); |
| 400 | 391 | } |
@@ -567,16 +558,14 @@ discard block |
||
| 567 | 558 | $table_name = $this->prefix . $table_name; |
| 568 | 559 | $query = sprintf('create table %s ( sequence int identity(1,1), seq int )', $table_name); |
| 569 | 560 | return $this->_query($query); |
| 570 | - } |
|
| 571 | - else |
|
| 561 | + } else |
|
| 572 | 562 | { |
| 573 | 563 | $table_name = $this->prefix . $table_name; |
| 574 | 564 | |
| 575 | 565 | if(!is_array($xml_obj->table->column)) |
| 576 | 566 | { |
| 577 | 567 | $columns[] = $xml_obj->table->column; |
| 578 | - } |
|
| 579 | - else |
|
| 568 | + } else |
|
| 580 | 569 | { |
| 581 | 570 | $columns = $xml_obj->table->column; |
| 582 | 571 | } |
@@ -603,12 +592,10 @@ discard block |
||
| 603 | 592 | if($primary_key) |
| 604 | 593 | { |
| 605 | 594 | $primary_list[] = $name; |
| 606 | - } |
|
| 607 | - else if($unique) |
|
| 595 | + } else if($unique) |
|
| 608 | 596 | { |
| 609 | 597 | $unique_list[$unique][] = $name; |
| 610 | - } |
|
| 611 | - else if($index) |
|
| 598 | + } else if($index) |
|
| 612 | 599 | { |
| 613 | 600 | $index_list[$index][] = $name; |
| 614 | 601 | } |
@@ -757,8 +744,7 @@ discard block |
||
| 757 | 744 | if($limit != '') |
| 758 | 745 | { |
| 759 | 746 | $select = $limit . ' ' . $select; |
| 760 | - } |
|
| 761 | - else |
|
| 747 | + } else |
|
| 762 | 748 | { |
| 763 | 749 | $select = 'SELECT ' . $select; |
| 764 | 750 | } |
@@ -824,8 +810,7 @@ discard block |
||
| 824 | 810 | if(!$where) |
| 825 | 811 | { |
| 826 | 812 | $sub_condition = ' WHERE ( '.implode(' and ',$sub_cond).' )'; |
| 827 | - } |
|
| 828 | - else |
|
| 813 | + } else |
|
| 829 | 814 | { |
| 830 | 815 | $sub_condition = ' and ( '.implode(' and ',$sub_cond).' )'; |
| 831 | 816 | } |
@@ -859,8 +844,7 @@ discard block |
||
| 859 | 844 | if($this->isError()) |
| 860 | 845 | { |
| 861 | 846 | return $this->queryError($queryObject); |
| 862 | - } |
|
| 863 | - else |
|
| 847 | + } else |
|
| 864 | 848 | { |
| 865 | 849 | return $this->queryPageLimit($queryObject, $result, $connection); |
| 866 | 850 | } |
@@ -893,8 +877,7 @@ discard block |
||
| 893 | 877 | $buff->data = array(); |
| 894 | 878 | $buff->page_navigation = new PageHandler(/* $total_count */0, /* $total_page */1, /* $page */1, /* $page_count */10); //default page handler values |
| 895 | 879 | return $buff; |
| 896 | - } |
|
| 897 | - else |
|
| 880 | + } else |
|
| 898 | 881 | { |
| 899 | 882 | return; |
| 900 | 883 | } |
@@ -958,8 +941,7 @@ discard block |
||
| 958 | 941 | if($total_count) |
| 959 | 942 | { |
| 960 | 943 | $total_page = (int) (($total_count - 1) / $list_count) + 1; |
| 961 | - } |
|
| 962 | - else |
|
| 944 | + } else |
|
| 963 | 945 | { |
| 964 | 946 | $total_page = 1; |
| 965 | 947 | } |
@@ -995,8 +977,7 @@ discard block |
||
| 995 | 977 | $buff->page = $page; |
| 996 | 978 | $buff->data = $data; |
| 997 | 979 | $buff->page_navigation = new PageHandler($total_count, $total_page, $page, $page_count); |
| 998 | - } |
|
| 999 | - else |
|
| 980 | + } else |
|
| 1000 | 981 | { |
| 1001 | 982 | $data = $this->_fetch($result); |
| 1002 | 983 | $buff = new Object (); |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | function DBMysqli_innodb($auto_connect = TRUE) |
| 24 | 24 | { |
| 25 | 25 | $this->_setDBInfo(); |
| 26 | - if($auto_connect) $this->_connect(); |
|
| 26 | + if ($auto_connect) $this->_connect(); |
|
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | /** |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | function __connect($connection) |
| 45 | 45 | { |
| 46 | 46 | // Attempt to connect |
| 47 | - if($connection["db_port"]) |
|
| 47 | + if ($connection["db_port"]) |
|
| 48 | 48 | { |
| 49 | 49 | $result = @mysqli_connect($connection["db_hostname"] |
| 50 | 50 | , $connection["db_userid"] |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | , $connection["db_database"]); |
| 61 | 61 | } |
| 62 | 62 | $error = mysqli_connect_errno(); |
| 63 | - if($error) |
|
| 63 | + if ($error) |
|
| 64 | 64 | { |
| 65 | 65 | $this->setError($error, mysqli_connect_error()); |
| 66 | 66 | return; |
@@ -89,13 +89,13 @@ discard block |
||
| 89 | 89 | { |
| 90 | 90 | $connection = $this->_getConnection('master'); |
| 91 | 91 | |
| 92 | - if(!$transactionLevel) |
|
| 92 | + if (!$transactionLevel) |
|
| 93 | 93 | { |
| 94 | 94 | $this->_query("begin"); |
| 95 | 95 | } |
| 96 | 96 | else |
| 97 | 97 | { |
| 98 | - $this->_query("SAVEPOINT SP" . $transactionLevel, $connection); |
|
| 98 | + $this->_query("SAVEPOINT SP".$transactionLevel, $connection); |
|
| 99 | 99 | } |
| 100 | 100 | return true; |
| 101 | 101 | } |
@@ -111,14 +111,14 @@ discard block |
||
| 111 | 111 | |
| 112 | 112 | $point = $transactionLevel - 1; |
| 113 | 113 | |
| 114 | - if($point) |
|
| 114 | + if ($point) |
|
| 115 | 115 | { |
| 116 | - $this->_query("ROLLBACK TO SP" . $point, $connection); |
|
| 116 | + $this->_query("ROLLBACK TO SP".$point, $connection); |
|
| 117 | 117 | } |
| 118 | 118 | else |
| 119 | 119 | { |
| 120 | 120 | mysqli_rollback($connection); |
| 121 | - $this->setQueryLog( array("query"=>"rollback") ); |
|
| 121 | + $this->setQueryLog(array("query"=>"rollback")); |
|
| 122 | 122 | } |
| 123 | 123 | return true; |
| 124 | 124 | } |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | { |
| 133 | 133 | $connection = $this->_getConnection('master'); |
| 134 | 134 | mysqli_commit($connection); |
| 135 | - $this->setQueryLog( array("query"=>"commit") ); |
|
| 135 | + $this->setQueryLog(array("query"=>"commit")); |
|
| 136 | 136 | return true; |
| 137 | 137 | } |
| 138 | 138 | |
@@ -145,11 +145,11 @@ discard block |
||
| 145 | 145 | */ |
| 146 | 146 | function addQuotes($string) |
| 147 | 147 | { |
| 148 | - if(version_compare(PHP_VERSION, "5.4.0", "<") && get_magic_quotes_gpc()) |
|
| 148 | + if (version_compare(PHP_VERSION, "5.4.0", "<") && get_magic_quotes_gpc()) |
|
| 149 | 149 | { |
| 150 | 150 | $string = stripslashes(str_replace("\\", "\\\\", $string)); |
| 151 | 151 | } |
| 152 | - if(!is_numeric($string)) |
|
| 152 | + if (!is_numeric($string)) |
|
| 153 | 153 | { |
| 154 | 154 | $connection = $this->_getConnection('master'); |
| 155 | 155 | $string = mysqli_escape_string($connection, $string); |
@@ -166,23 +166,23 @@ discard block |
||
| 166 | 166 | */ |
| 167 | 167 | function __query($query, $connection) |
| 168 | 168 | { |
| 169 | - if($this->use_prepared_statements == 'Y') |
|
| 169 | + if ($this->use_prepared_statements == 'Y') |
|
| 170 | 170 | { |
| 171 | 171 | // 1. Prepare query |
| 172 | 172 | $stmt = mysqli_prepare($connection, $query); |
| 173 | - if($stmt) |
|
| 173 | + if ($stmt) |
|
| 174 | 174 | { |
| 175 | 175 | $types = ''; |
| 176 | 176 | $params = array(); |
| 177 | 177 | $this->_prepareQueryParameters($types, $params); |
| 178 | 178 | |
| 179 | - if(!empty($params)) |
|
| 179 | + if (!empty($params)) |
|
| 180 | 180 | { |
| 181 | 181 | $args[0] = $stmt; |
| 182 | 182 | $args[1] = $types; |
| 183 | 183 | |
| 184 | 184 | $i = 2; |
| 185 | - foreach($params as $key => $param) |
|
| 185 | + foreach ($params as $key => $param) |
|
| 186 | 186 | { |
| 187 | 187 | $copy[$key] = $param; |
| 188 | 188 | $args[$i++] = &$copy[$key]; |
@@ -190,18 +190,18 @@ discard block |
||
| 190 | 190 | |
| 191 | 191 | // 2. Bind parameters |
| 192 | 192 | $status = call_user_func_array('mysqli_stmt_bind_param', $args); |
| 193 | - if(!$status) |
|
| 193 | + if (!$status) |
|
| 194 | 194 | { |
| 195 | - $this->setError(-1, "Invalid arguments: $query" . mysqli_error($connection) . PHP_EOL . print_r($args, true)); |
|
| 195 | + $this->setError(-1, "Invalid arguments: $query".mysqli_error($connection).PHP_EOL.print_r($args, true)); |
|
| 196 | 196 | } |
| 197 | 197 | } |
| 198 | 198 | |
| 199 | 199 | // 3. Execute query |
| 200 | 200 | $status = mysqli_stmt_execute($stmt); |
| 201 | 201 | |
| 202 | - if(!$status) |
|
| 202 | + if (!$status) |
|
| 203 | 203 | { |
| 204 | - $this->setError(-1, "Prepared statement failed: $query" . mysqli_error($connection) . PHP_EOL . print_r($args, true)); |
|
| 204 | + $this->setError(-1, "Prepared statement failed: $query".mysqli_error($connection).PHP_EOL.print_r($args, true)); |
|
| 205 | 205 | } |
| 206 | 206 | |
| 207 | 207 | // Return stmt for other processing - like retrieving resultset (_fetch) |
@@ -213,7 +213,7 @@ discard block |
||
| 213 | 213 | $result = mysqli_query($connection, $query); |
| 214 | 214 | // Error Check |
| 215 | 215 | $error = mysqli_error($connection); |
| 216 | - if($error) |
|
| 216 | + if ($error) |
|
| 217 | 217 | { |
| 218 | 218 | $this->setError(mysqli_errno($connection), $error); |
| 219 | 219 | } |
@@ -232,23 +232,23 @@ discard block |
||
| 232 | 232 | { |
| 233 | 233 | $types = ''; |
| 234 | 234 | $params = array(); |
| 235 | - if(!$this->param) |
|
| 235 | + if (!$this->param) |
|
| 236 | 236 | { |
| 237 | 237 | return; |
| 238 | 238 | } |
| 239 | 239 | |
| 240 | - foreach($this->param as $k => $o) |
|
| 240 | + foreach ($this->param as $k => $o) |
|
| 241 | 241 | { |
| 242 | 242 | $value = $o->getUnescapedValue(); |
| 243 | 243 | $type = $o->getType(); |
| 244 | 244 | |
| 245 | 245 | // Skip column names -> this should be concatenated to query string |
| 246 | - if($o->isColumnName()) |
|
| 246 | + if ($o->isColumnName()) |
|
| 247 | 247 | { |
| 248 | 248 | continue; |
| 249 | 249 | } |
| 250 | 250 | |
| 251 | - switch($type) |
|
| 251 | + switch ($type) |
|
| 252 | 252 | { |
| 253 | 253 | case 'number' : |
| 254 | 254 | $type = 'i'; |
@@ -260,9 +260,9 @@ discard block |
||
| 260 | 260 | $type = 's'; |
| 261 | 261 | } |
| 262 | 262 | |
| 263 | - if(is_array($value)) |
|
| 263 | + if (is_array($value)) |
|
| 264 | 264 | { |
| 265 | - foreach($value as $v) |
|
| 265 | + foreach ($value as $v) |
|
| 266 | 266 | { |
| 267 | 267 | $params[] = $v; |
| 268 | 268 | $types .= $type; |
@@ -284,12 +284,12 @@ discard block |
||
| 284 | 284 | */ |
| 285 | 285 | function _fetch($result, $arrayIndexEndValue = NULL) |
| 286 | 286 | { |
| 287 | - if($this->use_prepared_statements != 'Y') |
|
| 287 | + if ($this->use_prepared_statements != 'Y') |
|
| 288 | 288 | { |
| 289 | 289 | return parent::_fetch($result, $arrayIndexEndValue); |
| 290 | 290 | } |
| 291 | 291 | $output = array(); |
| 292 | - if(!$this->isConnected() || $this->isError() || !$result) |
|
| 292 | + if (!$this->isConnected() || $this->isError() || !$result) |
|
| 293 | 293 | { |
| 294 | 294 | return $output; |
| 295 | 295 | } |
@@ -305,25 +305,25 @@ discard block |
||
| 305 | 305 | * MYSQLI_TYPE for longtext is 252 |
| 306 | 306 | */ |
| 307 | 307 | $longtext_exists = false; |
| 308 | - foreach($fields as $field) |
|
| 308 | + foreach ($fields as $field) |
|
| 309 | 309 | { |
| 310 | - if(isset($resultArray[$field->name])) // When joined tables are used and the same column name appears twice, we should add it separately, otherwise bind_result fails |
|
| 310 | + if (isset($resultArray[$field->name])) // When joined tables are used and the same column name appears twice, we should add it separately, otherwise bind_result fails |
|
| 311 | 311 | { |
| 312 | - $field->name = 'repeat_' . $field->name; |
|
| 312 | + $field->name = 'repeat_'.$field->name; |
|
| 313 | 313 | } |
| 314 | 314 | |
| 315 | 315 | // Array passed needs to contain references, not values |
| 316 | 316 | $row[$field->name] = ""; |
| 317 | 317 | $resultArray[$field->name] = &$row[$field->name]; |
| 318 | 318 | |
| 319 | - if($field->type == 252) |
|
| 319 | + if ($field->type == 252) |
|
| 320 | 320 | { |
| 321 | 321 | $longtext_exists = true; |
| 322 | 322 | } |
| 323 | 323 | } |
| 324 | 324 | $resultArray = array_merge(array($stmt), $resultArray); |
| 325 | 325 | |
| 326 | - if($longtext_exists) |
|
| 326 | + if ($longtext_exists) |
|
| 327 | 327 | { |
| 328 | 328 | mysqli_stmt_store_result($stmt); |
| 329 | 329 | } |
@@ -331,17 +331,17 @@ discard block |
||
| 331 | 331 | call_user_func_array('mysqli_stmt_bind_result', $resultArray); |
| 332 | 332 | |
| 333 | 333 | $rows = array(); |
| 334 | - while(mysqli_stmt_fetch($stmt)) |
|
| 334 | + while (mysqli_stmt_fetch($stmt)) |
|
| 335 | 335 | { |
| 336 | 336 | $resultObject = new stdClass(); |
| 337 | 337 | |
| 338 | - foreach($resultArray as $key => $value) |
|
| 338 | + foreach ($resultArray as $key => $value) |
|
| 339 | 339 | { |
| 340 | - if($key === 0) |
|
| 340 | + if ($key === 0) |
|
| 341 | 341 | { |
| 342 | 342 | continue; // Skip stmt object |
| 343 | 343 | } |
| 344 | - if(strpos($key, 'repeat_')) |
|
| 344 | + if (strpos($key, 'repeat_')) |
|
| 345 | 345 | { |
| 346 | 346 | $key = substr($key, 6); |
| 347 | 347 | } |
@@ -353,9 +353,9 @@ discard block |
||
| 353 | 353 | |
| 354 | 354 | mysqli_stmt_close($stmt); |
| 355 | 355 | |
| 356 | - if($arrayIndexEndValue) |
|
| 356 | + if ($arrayIndexEndValue) |
|
| 357 | 357 | { |
| 358 | - foreach($rows as $row) |
|
| 358 | + foreach ($rows as $row) |
|
| 359 | 359 | { |
| 360 | 360 | $output[$arrayIndexEndValue--] = $row; |
| 361 | 361 | } |
@@ -365,9 +365,9 @@ discard block |
||
| 365 | 365 | $output = $rows; |
| 366 | 366 | } |
| 367 | 367 | |
| 368 | - if(count($output) == 1) |
|
| 368 | + if (count($output) == 1) |
|
| 369 | 369 | { |
| 370 | - if(isset($arrayIndexEndValue)) |
|
| 370 | + if (isset($arrayIndexEndValue)) |
|
| 371 | 371 | { |
| 372 | 372 | return $output; |
| 373 | 373 | } |
@@ -388,7 +388,7 @@ discard block |
||
| 388 | 388 | */ |
| 389 | 389 | function _executeInsertAct($queryObject, $with_values = false) |
| 390 | 390 | { |
| 391 | - if($this->use_prepared_statements != 'Y') |
|
| 391 | + if ($this->use_prepared_statements != 'Y') |
|
| 392 | 392 | { |
| 393 | 393 | return parent::_executeInsertAct($queryObject); |
| 394 | 394 | } |
@@ -406,7 +406,7 @@ discard block |
||
| 406 | 406 | */ |
| 407 | 407 | function _executeUpdateAct($queryObject, $with_values = false) |
| 408 | 408 | { |
| 409 | - if($this->use_prepared_statements != 'Y') |
|
| 409 | + if ($this->use_prepared_statements != 'Y') |
|
| 410 | 410 | { |
| 411 | 411 | return parent::_executeUpdateAct($queryObject); |
| 412 | 412 | } |
@@ -424,7 +424,7 @@ discard block |
||
| 424 | 424 | */ |
| 425 | 425 | function _executeDeleteAct($queryObject, $with_values = false) |
| 426 | 426 | { |
| 427 | - if($this->use_prepared_statements != 'Y') |
|
| 427 | + if ($this->use_prepared_statements != 'Y') |
|
| 428 | 428 | { |
| 429 | 429 | return parent::_executeDeleteAct($queryObject); |
| 430 | 430 | } |
@@ -445,7 +445,7 @@ discard block |
||
| 445 | 445 | */ |
| 446 | 446 | function _executeSelectAct($queryObject, $connection = null, $with_values = false) |
| 447 | 447 | { |
| 448 | - if($this->use_prepared_statements != 'Y') |
|
| 448 | + if ($this->use_prepared_statements != 'Y') |
|
| 449 | 449 | { |
| 450 | 450 | return parent::_executeSelectAct($queryObject, $connection); |
| 451 | 451 | } |
@@ -503,13 +503,13 @@ discard block |
||
| 503 | 503 | $xml_obj = $oXml->parse($xml_doc); |
| 504 | 504 | // Create a table schema |
| 505 | 505 | $table_name = $xml_obj->table->attrs->name; |
| 506 | - if($this->isTableExists($table_name)) |
|
| 506 | + if ($this->isTableExists($table_name)) |
|
| 507 | 507 | { |
| 508 | 508 | return; |
| 509 | 509 | } |
| 510 | - $table_name = $this->prefix . $table_name; |
|
| 510 | + $table_name = $this->prefix.$table_name; |
|
| 511 | 511 | |
| 512 | - if(!is_array($xml_obj->table->column)) |
|
| 512 | + if (!is_array($xml_obj->table->column)) |
|
| 513 | 513 | { |
| 514 | 514 | $columns[] = $xml_obj->table->column; |
| 515 | 515 | } |
@@ -518,7 +518,7 @@ discard block |
||
| 518 | 518 | $columns = $xml_obj->table->column; |
| 519 | 519 | } |
| 520 | 520 | |
| 521 | - foreach($columns as $column) |
|
| 521 | + foreach ($columns as $column) |
|
| 522 | 522 | { |
| 523 | 523 | $name = $column->attrs->name; |
| 524 | 524 | $type = $column->attrs->type; |
@@ -530,47 +530,47 @@ discard block |
||
| 530 | 530 | $default = $column->attrs->default; |
| 531 | 531 | $auto_increment = $column->attrs->auto_increment; |
| 532 | 532 | |
| 533 | - $column_schema[] = sprintf('`%s` %s%s %s %s %s', $name, $this->column_type[$type], $size ? '(' . $size . ')' : '', isset($default) ? "default '" . $default . "'" : '', $notnull ? 'not null' : '', $auto_increment ? 'auto_increment' : ''); |
|
| 533 | + $column_schema[] = sprintf('`%s` %s%s %s %s %s', $name, $this->column_type[$type], $size ? '('.$size.')' : '', isset($default) ? "default '".$default."'" : '', $notnull ? 'not null' : '', $auto_increment ? 'auto_increment' : ''); |
|
| 534 | 534 | |
| 535 | - if($primary_key) |
|
| 535 | + if ($primary_key) |
|
| 536 | 536 | { |
| 537 | 537 | $primary_list[] = $name; |
| 538 | 538 | } |
| 539 | - else if($unique) |
|
| 539 | + else if ($unique) |
|
| 540 | 540 | { |
| 541 | 541 | $unique_list[$unique][] = $name; |
| 542 | 542 | } |
| 543 | - else if($index) |
|
| 543 | + else if ($index) |
|
| 544 | 544 | { |
| 545 | 545 | $index_list[$index][] = $name; |
| 546 | 546 | } |
| 547 | 547 | } |
| 548 | 548 | |
| 549 | - if(count($primary_list)) |
|
| 549 | + if (count($primary_list)) |
|
| 550 | 550 | { |
| 551 | - $column_schema[] = sprintf("primary key (%s)", '`' . implode($primary_list, '`,`') . '`'); |
|
| 551 | + $column_schema[] = sprintf("primary key (%s)", '`'.implode($primary_list, '`,`').'`'); |
|
| 552 | 552 | } |
| 553 | 553 | |
| 554 | - if(count($unique_list)) |
|
| 554 | + if (count($unique_list)) |
|
| 555 | 555 | { |
| 556 | - foreach($unique_list as $key => $val) |
|
| 556 | + foreach ($unique_list as $key => $val) |
|
| 557 | 557 | { |
| 558 | - $column_schema[] = sprintf("unique %s (%s)", $key, '`' . implode($val, '`,`') . '`'); |
|
| 558 | + $column_schema[] = sprintf("unique %s (%s)", $key, '`'.implode($val, '`,`').'`'); |
|
| 559 | 559 | } |
| 560 | 560 | } |
| 561 | 561 | |
| 562 | - if(count($index_list)) |
|
| 562 | + if (count($index_list)) |
|
| 563 | 563 | { |
| 564 | - foreach($index_list as $key => $val) |
|
| 564 | + foreach ($index_list as $key => $val) |
|
| 565 | 565 | { |
| 566 | - $column_schema[] = sprintf("index %s (%s)", $key, '`' . implode($val, '`,`') . '`'); |
|
| 566 | + $column_schema[] = sprintf("index %s (%s)", $key, '`'.implode($val, '`,`').'`'); |
|
| 567 | 567 | } |
| 568 | 568 | } |
| 569 | 569 | |
| 570 | 570 | $schema = sprintf('create table `%s` (%s%s) %s;', $this->addQuotes($table_name), "\n", implode($column_schema, ",\n"), "ENGINE = INNODB CHARACTER SET utf8 COLLATE utf8_general_ci"); |
| 571 | 571 | |
| 572 | 572 | $output = $this->_query($schema); |
| 573 | - if(!$output) |
|
| 573 | + if (!$output) |
|
| 574 | 574 | { |
| 575 | 575 | return false; |
| 576 | 576 | } |
@@ -23,7 +23,9 @@ discard block |
||
| 23 | 23 | function DBMysqli_innodb($auto_connect = TRUE) |
| 24 | 24 | { |
| 25 | 25 | $this->_setDBInfo(); |
| 26 | - if($auto_connect) $this->_connect(); |
|
| 26 | + if($auto_connect) { |
|
| 27 | + $this->_connect(); |
|
| 28 | + } |
|
| 27 | 29 | } |
| 28 | 30 | |
| 29 | 31 | /** |
@@ -51,8 +53,7 @@ discard block |
||
| 51 | 53 | , $connection["db_password"] |
| 52 | 54 | , $connection["db_database"] |
| 53 | 55 | , $connection["db_port"]); |
| 54 | - } |
|
| 55 | - else |
|
| 56 | + } else |
|
| 56 | 57 | { |
| 57 | 58 | $result = @mysqli_connect($connection["db_hostname"] |
| 58 | 59 | , $connection["db_userid"] |
@@ -92,8 +93,7 @@ discard block |
||
| 92 | 93 | if(!$transactionLevel) |
| 93 | 94 | { |
| 94 | 95 | $this->_query("begin"); |
| 95 | - } |
|
| 96 | - else |
|
| 96 | + } else |
|
| 97 | 97 | { |
| 98 | 98 | $this->_query("SAVEPOINT SP" . $transactionLevel, $connection); |
| 99 | 99 | } |
@@ -114,8 +114,7 @@ discard block |
||
| 114 | 114 | if($point) |
| 115 | 115 | { |
| 116 | 116 | $this->_query("ROLLBACK TO SP" . $point, $connection); |
| 117 | - } |
|
| 118 | - else |
|
| 117 | + } else |
|
| 119 | 118 | { |
| 120 | 119 | mysqli_rollback($connection); |
| 121 | 120 | $this->setQueryLog( array("query"=>"rollback") ); |
@@ -267,8 +266,7 @@ discard block |
||
| 267 | 266 | $params[] = $v; |
| 268 | 267 | $types .= $type; |
| 269 | 268 | } |
| 270 | - } |
|
| 271 | - else |
|
| 269 | + } else |
|
| 272 | 270 | { |
| 273 | 271 | $params[] = $value; |
| 274 | 272 | $types .= $type; |
@@ -307,10 +305,12 @@ discard block |
||
| 307 | 305 | $longtext_exists = false; |
| 308 | 306 | foreach($fields as $field) |
| 309 | 307 | { |
| 310 | - if(isset($resultArray[$field->name])) // When joined tables are used and the same column name appears twice, we should add it separately, otherwise bind_result fails |
|
| 308 | + if(isset($resultArray[$field->name])) { |
|
| 309 | + // When joined tables are used and the same column name appears twice, we should add it separately, otherwise bind_result fails |
|
| 311 | 310 | { |
| 312 | 311 | $field->name = 'repeat_' . $field->name; |
| 313 | 312 | } |
| 313 | + } |
|
| 314 | 314 | |
| 315 | 315 | // Array passed needs to contain references, not values |
| 316 | 316 | $row[$field->name] = ""; |
@@ -359,8 +359,7 @@ discard block |
||
| 359 | 359 | { |
| 360 | 360 | $output[$arrayIndexEndValue--] = $row; |
| 361 | 361 | } |
| 362 | - } |
|
| 363 | - else |
|
| 362 | + } else |
|
| 364 | 363 | { |
| 365 | 364 | $output = $rows; |
| 366 | 365 | } |
@@ -370,8 +369,7 @@ discard block |
||
| 370 | 369 | if(isset($arrayIndexEndValue)) |
| 371 | 370 | { |
| 372 | 371 | return $output; |
| 373 | - } |
|
| 374 | - else |
|
| 372 | + } else |
|
| 375 | 373 | { |
| 376 | 374 | return $output[0]; |
| 377 | 375 | } |
@@ -512,8 +510,7 @@ discard block |
||
| 512 | 510 | if(!is_array($xml_obj->table->column)) |
| 513 | 511 | { |
| 514 | 512 | $columns[] = $xml_obj->table->column; |
| 515 | - } |
|
| 516 | - else |
|
| 513 | + } else |
|
| 517 | 514 | { |
| 518 | 515 | $columns = $xml_obj->table->column; |
| 519 | 516 | } |
@@ -535,12 +532,10 @@ discard block |
||
| 535 | 532 | if($primary_key) |
| 536 | 533 | { |
| 537 | 534 | $primary_list[] = $name; |
| 538 | - } |
|
| 539 | - else if($unique) |
|
| 535 | + } else if($unique) |
|
| 540 | 536 | { |
| 541 | 537 | $unique_list[$unique][] = $name; |
| 542 | - } |
|
| 543 | - else if($index) |
|
| 538 | + } else if($index) |
|
| 544 | 539 | { |
| 545 | 540 | $index_list[$index][] = $name; |
| 546 | 541 | } |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | function DBMysql($auto_connect = TRUE) |
| 47 | 47 | { |
| 48 | 48 | $this->_setDBInfo(); |
| 49 | - if($auto_connect) $this->_connect(); |
|
| 49 | + if ($auto_connect) $this->_connect(); |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | /** |
@@ -67,32 +67,32 @@ discard block |
||
| 67 | 67 | function __connect($connection) |
| 68 | 68 | { |
| 69 | 69 | // Ignore if no DB information exists |
| 70 | - if(strpos($connection["db_hostname"], ':') === false && $connection["db_port"]) |
|
| 70 | + if (strpos($connection["db_hostname"], ':') === false && $connection["db_port"]) |
|
| 71 | 71 | { |
| 72 | - $connection["db_hostname"] .= ':' . $connection["db_port"]; |
|
| 72 | + $connection["db_hostname"] .= ':'.$connection["db_port"]; |
|
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | // Attempt to connect |
| 76 | 76 | $result = @mysql_connect($connection["db_hostname"], $connection["db_userid"], $connection["db_password"]); |
| 77 | - if(!$result) |
|
| 77 | + if (!$result) |
|
| 78 | 78 | { |
| 79 | 79 | exit('XE cannot connect to DB.'); |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | - if(mysql_error()) |
|
| 82 | + if (mysql_error()) |
|
| 83 | 83 | { |
| 84 | 84 | $this->setError(mysql_errno(), mysql_error()); |
| 85 | 85 | return; |
| 86 | 86 | } |
| 87 | 87 | // Error appears if the version is lower than 4.1 |
| 88 | - if(version_compare(mysql_get_server_info($result), '4.1', '<')) |
|
| 88 | + if (version_compare(mysql_get_server_info($result), '4.1', '<')) |
|
| 89 | 89 | { |
| 90 | - $this->setError(-1, 'XE cannot be installed under the version of mysql 4.1. Current mysql version is ' . mysql_get_server_info()); |
|
| 90 | + $this->setError(-1, 'XE cannot be installed under the version of mysql 4.1. Current mysql version is '.mysql_get_server_info()); |
|
| 91 | 91 | return; |
| 92 | 92 | } |
| 93 | 93 | // select db |
| 94 | 94 | @mysql_select_db($connection["db_database"], $result); |
| 95 | - if(mysql_error()) |
|
| 95 | + if (mysql_error()) |
|
| 96 | 96 | { |
| 97 | 97 | $this->setError(mysql_errno(), mysql_error()); |
| 98 | 98 | return; |
@@ -131,11 +131,11 @@ discard block |
||
| 131 | 131 | */ |
| 132 | 132 | function addQuotes($string) |
| 133 | 133 | { |
| 134 | - if(version_compare(PHP_VERSION, "5.4.0", "<") && get_magic_quotes_gpc()) |
|
| 134 | + if (version_compare(PHP_VERSION, "5.4.0", "<") && get_magic_quotes_gpc()) |
|
| 135 | 135 | { |
| 136 | 136 | $string = stripslashes(str_replace("\\", "\\\\", $string)); |
| 137 | 137 | } |
| 138 | - if(!is_numeric($string)) |
|
| 138 | + if (!is_numeric($string)) |
|
| 139 | 139 | { |
| 140 | 140 | $string = @mysql_real_escape_string($string); |
| 141 | 141 | } |
@@ -181,14 +181,14 @@ discard block |
||
| 181 | 181 | */ |
| 182 | 182 | function __query($query, $connection) |
| 183 | 183 | { |
| 184 | - if(!$connection) |
|
| 184 | + if (!$connection) |
|
| 185 | 185 | { |
| 186 | 186 | exit('XE cannot handle DB connection.'); |
| 187 | 187 | } |
| 188 | 188 | // Run the query statement |
| 189 | 189 | $result = mysql_query($query, $connection); |
| 190 | 190 | // Error Check |
| 191 | - if(mysql_error($connection)) |
|
| 191 | + if (mysql_error($connection)) |
|
| 192 | 192 | { |
| 193 | 193 | $this->setError(mysql_errno($connection), mysql_error($connection)); |
| 194 | 194 | } |
@@ -205,13 +205,13 @@ discard block |
||
| 205 | 205 | function _fetch($result, $arrayIndexEndValue = NULL) |
| 206 | 206 | { |
| 207 | 207 | $output = array(); |
| 208 | - if(!$this->isConnected() || $this->isError() || !$result) |
|
| 208 | + if (!$this->isConnected() || $this->isError() || !$result) |
|
| 209 | 209 | { |
| 210 | 210 | return $output; |
| 211 | 211 | } |
| 212 | - while($tmp = $this->db_fetch_object($result)) |
|
| 212 | + while ($tmp = $this->db_fetch_object($result)) |
|
| 213 | 213 | { |
| 214 | - if($arrayIndexEndValue) |
|
| 214 | + if ($arrayIndexEndValue) |
|
| 215 | 215 | { |
| 216 | 216 | $output[$arrayIndexEndValue--] = $tmp; |
| 217 | 217 | } |
@@ -220,9 +220,9 @@ discard block |
||
| 220 | 220 | $output[] = $tmp; |
| 221 | 221 | } |
| 222 | 222 | } |
| 223 | - if(count($output) == 1) |
|
| 223 | + if (count($output) == 1) |
|
| 224 | 224 | { |
| 225 | - if(isset($arrayIndexEndValue)) |
|
| 225 | + if (isset($arrayIndexEndValue)) |
|
| 226 | 226 | { |
| 227 | 227 | return $output; |
| 228 | 228 | } |
@@ -245,7 +245,7 @@ discard block |
||
| 245 | 245 | $query = sprintf("insert into `%ssequence` (seq) values ('0')", $this->prefix); |
| 246 | 246 | $this->_query($query); |
| 247 | 247 | $sequence = $this->db_insert_id(); |
| 248 | - if($sequence % 10000 == 0) |
|
| 248 | + if ($sequence % 10000 == 0) |
|
| 249 | 249 | { |
| 250 | 250 | $query = sprintf("delete from `%ssequence` where seq < %d", $this->prefix, $sequence); |
| 251 | 251 | $this->_query($query); |
@@ -265,7 +265,7 @@ discard block |
||
| 265 | 265 | $query = sprintf("select password('%s') as password, old_password('%s') as old_password", $this->addQuotes($password), $this->addQuotes($password)); |
| 266 | 266 | $result = $this->_query($query); |
| 267 | 267 | $tmp = $this->_fetch($result); |
| 268 | - if($tmp->password === $saved_password || $tmp->old_password === $saved_password) |
|
| 268 | + if ($tmp->password === $saved_password || $tmp->old_password === $saved_password) |
|
| 269 | 269 | { |
| 270 | 270 | return true; |
| 271 | 271 | } |
@@ -282,7 +282,7 @@ discard block |
||
| 282 | 282 | $query = sprintf("show tables like '%s%s'", $this->prefix, $this->addQuotes($target_name)); |
| 283 | 283 | $result = $this->_query($query); |
| 284 | 284 | $tmp = $this->_fetch($result); |
| 285 | - if(!$tmp) |
|
| 285 | + if (!$tmp) |
|
| 286 | 286 | { |
| 287 | 287 | return false; |
| 288 | 288 | } |
@@ -302,13 +302,13 @@ discard block |
||
| 302 | 302 | function addColumn($table_name, $column_name, $type = 'number', $size = '', $default = null, $notnull = false) |
| 303 | 303 | { |
| 304 | 304 | $type = $this->column_type[$type]; |
| 305 | - if(strtoupper($type) == 'INTEGER') |
|
| 305 | + if (strtoupper($type) == 'INTEGER') |
|
| 306 | 306 | { |
| 307 | 307 | $size = ''; |
| 308 | 308 | } |
| 309 | 309 | |
| 310 | 310 | $query = sprintf("alter table `%s%s` add `%s` ", $this->prefix, $table_name, $column_name); |
| 311 | - if($size) |
|
| 311 | + if ($size) |
|
| 312 | 312 | { |
| 313 | 313 | $query .= sprintf(" %s(%s) ", $type, $size); |
| 314 | 314 | } |
@@ -316,11 +316,11 @@ discard block |
||
| 316 | 316 | { |
| 317 | 317 | $query .= sprintf(" %s ", $type); |
| 318 | 318 | } |
| 319 | - if(isset($default)) |
|
| 319 | + if (isset($default)) |
|
| 320 | 320 | { |
| 321 | 321 | $query .= sprintf(" default '%s' ", $default); |
| 322 | 322 | } |
| 323 | - if($notnull) |
|
| 323 | + if ($notnull) |
|
| 324 | 324 | { |
| 325 | 325 | $query .= " not null "; |
| 326 | 326 | } |
@@ -350,18 +350,18 @@ discard block |
||
| 350 | 350 | { |
| 351 | 351 | $query = sprintf("show fields from `%s%s`", $this->prefix, $table_name); |
| 352 | 352 | $result = $this->_query($query); |
| 353 | - if($this->isError()) |
|
| 353 | + if ($this->isError()) |
|
| 354 | 354 | { |
| 355 | 355 | return; |
| 356 | 356 | } |
| 357 | 357 | $output = $this->_fetch($result); |
| 358 | - if($output) |
|
| 358 | + if ($output) |
|
| 359 | 359 | { |
| 360 | 360 | $column_name = strtolower($column_name); |
| 361 | - foreach($output as $key => $val) |
|
| 361 | + foreach ($output as $key => $val) |
|
| 362 | 362 | { |
| 363 | 363 | $name = strtolower($val->Field); |
| 364 | - if($column_name == $name) |
|
| 364 | + if ($column_name == $name) |
|
| 365 | 365 | { |
| 366 | 366 | return true; |
| 367 | 367 | } |
@@ -382,7 +382,7 @@ discard block |
||
| 382 | 382 | */ |
| 383 | 383 | function addIndex($table_name, $index_name, $target_columns, $is_unique = false) |
| 384 | 384 | { |
| 385 | - if(!is_array($target_columns)) |
|
| 385 | + if (!is_array($target_columns)) |
|
| 386 | 386 | { |
| 387 | 387 | $target_columns = array($target_columns); |
| 388 | 388 | } |
@@ -415,23 +415,23 @@ discard block |
||
| 415 | 415 | //$query = sprintf("show indexes from %s%s where key_name = '%s' ", $this->prefix, $table_name, $index_name); |
| 416 | 416 | $query = sprintf("show indexes from `%s%s`", $this->prefix, $table_name); |
| 417 | 417 | $result = $this->_query($query); |
| 418 | - if($this->isError()) |
|
| 418 | + if ($this->isError()) |
|
| 419 | 419 | { |
| 420 | 420 | return; |
| 421 | 421 | } |
| 422 | 422 | $output = $this->_fetch($result); |
| 423 | - if(!$output) |
|
| 423 | + if (!$output) |
|
| 424 | 424 | { |
| 425 | 425 | return; |
| 426 | 426 | } |
| 427 | - if(!is_array($output)) |
|
| 427 | + if (!is_array($output)) |
|
| 428 | 428 | { |
| 429 | 429 | $output = array($output); |
| 430 | 430 | } |
| 431 | 431 | |
| 432 | - for($i = 0; $i < count($output); $i++) |
|
| 432 | + for ($i = 0; $i < count($output); $i++) |
|
| 433 | 433 | { |
| 434 | - if($output[$i]->Key_name == $index_name) |
|
| 434 | + if ($output[$i]->Key_name == $index_name) |
|
| 435 | 435 | { |
| 436 | 436 | return true; |
| 437 | 437 | } |
@@ -456,7 +456,7 @@ discard block |
||
| 456 | 456 | */ |
| 457 | 457 | function createTableByXmlFile($file_name) |
| 458 | 458 | { |
| 459 | - if(!file_exists($file_name)) |
|
| 459 | + if (!file_exists($file_name)) |
|
| 460 | 460 | { |
| 461 | 461 | return; |
| 462 | 462 | } |
@@ -481,13 +481,13 @@ discard block |
||
| 481 | 481 | $xml_obj = $oXml->parse($xml_doc); |
| 482 | 482 | // Create a table schema |
| 483 | 483 | $table_name = $xml_obj->table->attrs->name; |
| 484 | - if($this->isTableExists($table_name)) |
|
| 484 | + if ($this->isTableExists($table_name)) |
|
| 485 | 485 | { |
| 486 | 486 | return; |
| 487 | 487 | } |
| 488 | - $table_name = $this->prefix . $table_name; |
|
| 488 | + $table_name = $this->prefix.$table_name; |
|
| 489 | 489 | |
| 490 | - if(!is_array($xml_obj->table->column)) |
|
| 490 | + if (!is_array($xml_obj->table->column)) |
|
| 491 | 491 | { |
| 492 | 492 | $columns[] = $xml_obj->table->column; |
| 493 | 493 | } |
@@ -500,7 +500,7 @@ discard block |
||
| 500 | 500 | $unique_list = array(); |
| 501 | 501 | $index_list = array(); |
| 502 | 502 | |
| 503 | - foreach($columns as $column) |
|
| 503 | + foreach ($columns as $column) |
|
| 504 | 504 | { |
| 505 | 505 | $name = $column->attrs->name; |
| 506 | 506 | $type = $column->attrs->type; |
@@ -512,47 +512,47 @@ discard block |
||
| 512 | 512 | $default = $column->attrs->default; |
| 513 | 513 | $auto_increment = $column->attrs->auto_increment; |
| 514 | 514 | |
| 515 | - $column_schema[] = sprintf('`%s` %s%s %s %s %s', $name, $this->column_type[$type], $size ? '(' . $size . ')' : '', isset($default) ? "default '" . $default . "'" : '', $notnull ? 'not null' : '', $auto_increment ? 'auto_increment' : ''); |
|
| 515 | + $column_schema[] = sprintf('`%s` %s%s %s %s %s', $name, $this->column_type[$type], $size ? '('.$size.')' : '', isset($default) ? "default '".$default."'" : '', $notnull ? 'not null' : '', $auto_increment ? 'auto_increment' : ''); |
|
| 516 | 516 | |
| 517 | - if($primary_key) |
|
| 517 | + if ($primary_key) |
|
| 518 | 518 | { |
| 519 | 519 | $primary_list[] = $name; |
| 520 | 520 | } |
| 521 | - else if($unique) |
|
| 521 | + else if ($unique) |
|
| 522 | 522 | { |
| 523 | 523 | $unique_list[$unique][] = $name; |
| 524 | 524 | } |
| 525 | - else if($index) |
|
| 525 | + else if ($index) |
|
| 526 | 526 | { |
| 527 | 527 | $index_list[$index][] = $name; |
| 528 | 528 | } |
| 529 | 529 | } |
| 530 | 530 | |
| 531 | - if(count($primary_list)) |
|
| 531 | + if (count($primary_list)) |
|
| 532 | 532 | { |
| 533 | - $column_schema[] = sprintf("primary key (%s)", '`' . implode($primary_list, '`,`') . '`'); |
|
| 533 | + $column_schema[] = sprintf("primary key (%s)", '`'.implode($primary_list, '`,`').'`'); |
|
| 534 | 534 | } |
| 535 | 535 | |
| 536 | - if(count($unique_list)) |
|
| 536 | + if (count($unique_list)) |
|
| 537 | 537 | { |
| 538 | - foreach($unique_list as $key => $val) |
|
| 538 | + foreach ($unique_list as $key => $val) |
|
| 539 | 539 | { |
| 540 | - $column_schema[] = sprintf("unique %s (%s)", $key, '`' . implode($val, '`,`') . '`'); |
|
| 540 | + $column_schema[] = sprintf("unique %s (%s)", $key, '`'.implode($val, '`,`').'`'); |
|
| 541 | 541 | } |
| 542 | 542 | } |
| 543 | 543 | |
| 544 | - if(count($index_list)) |
|
| 544 | + if (count($index_list)) |
|
| 545 | 545 | { |
| 546 | - foreach($index_list as $key => $val) |
|
| 546 | + foreach ($index_list as $key => $val) |
|
| 547 | 547 | { |
| 548 | - $column_schema[] = sprintf("index %s (%s)", $key, '`' . implode($val, '`,`') . '`'); |
|
| 548 | + $column_schema[] = sprintf("index %s (%s)", $key, '`'.implode($val, '`,`').'`'); |
|
| 549 | 549 | } |
| 550 | 550 | } |
| 551 | 551 | |
| 552 | 552 | $schema = sprintf('create table `%s` (%s%s) %s;', $this->addQuotes($table_name), "\n", implode($column_schema, ",\n"), "ENGINE = MYISAM CHARACTER SET utf8 COLLATE utf8_general_ci"); |
| 553 | 553 | |
| 554 | 554 | $output = $this->_query($schema); |
| 555 | - if(!$output) |
|
| 555 | + if (!$output) |
|
| 556 | 556 | return false; |
| 557 | 557 | } |
| 558 | 558 | |
@@ -565,8 +565,8 @@ discard block |
||
| 565 | 565 | function _executeInsertAct($queryObject, $with_values = true) |
| 566 | 566 | { |
| 567 | 567 | $query = $this->getInsertSql($queryObject, $with_values, true); |
| 568 | - $query .= (__DEBUG_QUERY__ & 1 && $this->query_id) ? sprintf(' ' . $this->comment_syntax, $this->query_id) : ''; |
|
| 569 | - if(is_a($query, 'Object')) |
|
| 568 | + $query .= (__DEBUG_QUERY__ & 1 && $this->query_id) ? sprintf(' '.$this->comment_syntax, $this->query_id) : ''; |
|
| 569 | + if (is_a($query, 'Object')) |
|
| 570 | 570 | { |
| 571 | 571 | return; |
| 572 | 572 | } |
@@ -582,13 +582,13 @@ discard block |
||
| 582 | 582 | function _executeUpdateAct($queryObject, $with_values = true) |
| 583 | 583 | { |
| 584 | 584 | $query = $this->getUpdateSql($queryObject, $with_values, true); |
| 585 | - if(is_a($query, 'Object')) |
|
| 585 | + if (is_a($query, 'Object')) |
|
| 586 | 586 | { |
| 587 | - if(!$query->toBool()) return $query; |
|
| 587 | + if (!$query->toBool()) return $query; |
|
| 588 | 588 | else return; |
| 589 | 589 | } |
| 590 | 590 | |
| 591 | - $query .= (__DEBUG_QUERY__ & 1 && $this->query_id) ? sprintf(' ' . $this->comment_syntax, $this->query_id) : ''; |
|
| 591 | + $query .= (__DEBUG_QUERY__ & 1 && $this->query_id) ? sprintf(' '.$this->comment_syntax, $this->query_id) : ''; |
|
| 592 | 592 | |
| 593 | 593 | |
| 594 | 594 | return $this->_query($query); |
@@ -603,8 +603,8 @@ discard block |
||
| 603 | 603 | function _executeDeleteAct($queryObject, $with_values = true) |
| 604 | 604 | { |
| 605 | 605 | $query = $this->getDeleteSql($queryObject, $with_values, true); |
| 606 | - $query .= (__DEBUG_QUERY__ & 1 && $this->query_id) ? sprintf(' ' . $this->comment_syntax, $this->query_id) : ''; |
|
| 607 | - if(is_a($query, 'Object')) |
|
| 606 | + $query .= (__DEBUG_QUERY__ & 1 && $this->query_id) ? sprintf(' '.$this->comment_syntax, $this->query_id) : ''; |
|
| 607 | + if (is_a($query, 'Object')) |
|
| 608 | 608 | { |
| 609 | 609 | return; |
| 610 | 610 | } |
@@ -624,30 +624,30 @@ discard block |
||
| 624 | 624 | { |
| 625 | 625 | $limit = $queryObject->getLimit(); |
| 626 | 626 | $result = NULL; |
| 627 | - if($limit && $limit->isPageHandler()) |
|
| 627 | + if ($limit && $limit->isPageHandler()) |
|
| 628 | 628 | { |
| 629 | 629 | return $this->queryPageLimit($queryObject, $result, $connection, $with_values); |
| 630 | 630 | } |
| 631 | 631 | else |
| 632 | 632 | { |
| 633 | 633 | $query = $this->getSelectSql($queryObject, $with_values); |
| 634 | - if(is_a($query, 'Object')) |
|
| 634 | + if (is_a($query, 'Object')) |
|
| 635 | 635 | { |
| 636 | 636 | return; |
| 637 | 637 | } |
| 638 | - $query .= (__DEBUG_QUERY__ & 1 && $queryObject->queryID) ? sprintf(' ' . $this->comment_syntax, $queryObject->queryID) : ''; |
|
| 638 | + $query .= (__DEBUG_QUERY__ & 1 && $queryObject->queryID) ? sprintf(' '.$this->comment_syntax, $queryObject->queryID) : ''; |
|
| 639 | 639 | |
| 640 | 640 | $result = $this->_query($query, $connection); |
| 641 | - if($this->isError()) |
|
| 641 | + if ($this->isError()) |
|
| 642 | 642 | { |
| 643 | 643 | return $this->queryError($queryObject); |
| 644 | 644 | } |
| 645 | 645 | |
| 646 | 646 | $data = $this->_fetch($result); |
| 647 | - $buff = new Object (); |
|
| 647 | + $buff = new Object(); |
|
| 648 | 648 | $buff->data = $data; |
| 649 | 649 | |
| 650 | - if($queryObject->usesClickCount()) |
|
| 650 | + if ($queryObject->usesClickCount()) |
|
| 651 | 651 | { |
| 652 | 652 | $update_query = $this->getClickCountQuery($queryObject); |
| 653 | 653 | $this->_executeUpdateAct($update_query, $with_values); |
@@ -708,9 +708,9 @@ discard block |
||
| 708 | 708 | function queryError($queryObject) |
| 709 | 709 | { |
| 710 | 710 | $limit = $queryObject->getLimit(); |
| 711 | - if($limit && $limit->isPageHandler()) |
|
| 711 | + if ($limit && $limit->isPageHandler()) |
|
| 712 | 712 | { |
| 713 | - $buff = new Object (); |
|
| 713 | + $buff = new Object(); |
|
| 714 | 714 | $buff->total_count = 0; |
| 715 | 715 | $buff->total_page = 0; |
| 716 | 716 | $buff->page = 1; |
@@ -737,48 +737,48 @@ discard block |
||
| 737 | 737 | $limit = $queryObject->getLimit(); |
| 738 | 738 | // Total count |
| 739 | 739 | $temp_where = $queryObject->getWhereString($with_values, false); |
| 740 | - $count_query = sprintf('select count(*) as "count" %s %s', 'FROM ' . $queryObject->getFromString($with_values), ($temp_where === '' ? '' : ' WHERE ' . $temp_where)); |
|
| 740 | + $count_query = sprintf('select count(*) as "count" %s %s', 'FROM '.$queryObject->getFromString($with_values), ($temp_where === '' ? '' : ' WHERE '.$temp_where)); |
|
| 741 | 741 | |
| 742 | 742 | // Check for distinct query and if found update count query structure |
| 743 | 743 | $temp_select = $queryObject->getSelectString($with_values); |
| 744 | 744 | $uses_distinct = stripos($temp_select, "distinct") !== false; |
| 745 | 745 | $uses_groupby = $queryObject->getGroupByString() != ''; |
| 746 | - if($uses_distinct || $uses_groupby) |
|
| 746 | + if ($uses_distinct || $uses_groupby) |
|
| 747 | 747 | { |
| 748 | 748 | $count_query = sprintf('select %s %s %s %s' |
| 749 | 749 | , $temp_select == '*' ? '1' : $temp_select |
| 750 | - , 'FROM ' . $queryObject->getFromString($with_values) |
|
| 751 | - , ($temp_where === '' ? '' : ' WHERE ' . $temp_where) |
|
| 752 | - , ($uses_groupby ? ' GROUP BY ' . $queryObject->getGroupByString() : '') |
|
| 750 | + , 'FROM '.$queryObject->getFromString($with_values) |
|
| 751 | + , ($temp_where === '' ? '' : ' WHERE '.$temp_where) |
|
| 752 | + , ($uses_groupby ? ' GROUP BY '.$queryObject->getGroupByString() : '') |
|
| 753 | 753 | ); |
| 754 | 754 | |
| 755 | 755 | // If query uses grouping or distinct, count from original select |
| 756 | 756 | $count_query = sprintf('select count(*) as "count" from (%s) xet', $count_query); |
| 757 | 757 | } |
| 758 | 758 | |
| 759 | - $count_query .= (__DEBUG_QUERY__ & 1 && $queryObject->queryID) ? sprintf(' ' . $this->comment_syntax, $queryObject->queryID) : ''; |
|
| 759 | + $count_query .= (__DEBUG_QUERY__ & 1 && $queryObject->queryID) ? sprintf(' '.$this->comment_syntax, $queryObject->queryID) : ''; |
|
| 760 | 760 | $result_count = $this->_query($count_query, $connection); |
| 761 | 761 | $count_output = $this->_fetch($result_count); |
| 762 | 762 | $total_count = (int) (isset($count_output->count) ? $count_output->count : NULL); |
| 763 | 763 | |
| 764 | 764 | $list_count = $limit->list_count->getValue(); |
| 765 | - if(!$list_count) |
|
| 765 | + if (!$list_count) |
|
| 766 | 766 | { |
| 767 | 767 | $list_count = 20; |
| 768 | 768 | } |
| 769 | 769 | $page_count = $limit->page_count->getValue(); |
| 770 | - if(!$page_count) |
|
| 770 | + if (!$page_count) |
|
| 771 | 771 | { |
| 772 | 772 | $page_count = 10; |
| 773 | 773 | } |
| 774 | 774 | $page = $limit->page->getValue(); |
| 775 | - if(!$page || $page < 1) |
|
| 775 | + if (!$page || $page < 1) |
|
| 776 | 776 | { |
| 777 | 777 | $page = 1; |
| 778 | 778 | } |
| 779 | 779 | |
| 780 | 780 | // total pages |
| 781 | - if($total_count) |
|
| 781 | + if ($total_count) |
|
| 782 | 782 | { |
| 783 | 783 | $total_page = (int) (($total_count - 1) / $list_count) + 1; |
| 784 | 784 | } |
@@ -788,10 +788,10 @@ discard block |
||
| 788 | 788 | } |
| 789 | 789 | |
| 790 | 790 | // check the page variables |
| 791 | - if($page > $total_page) |
|
| 791 | + if ($page > $total_page) |
|
| 792 | 792 | { |
| 793 | 793 | // If requested page is bigger than total number of pages, return empty list |
| 794 | - $buff = new Object (); |
|
| 794 | + $buff = new Object(); |
|
| 795 | 795 | $buff->total_count = $total_count; |
| 796 | 796 | $buff->total_page = $total_page; |
| 797 | 797 | $buff->page = $page; |
@@ -803,9 +803,9 @@ discard block |
||
| 803 | 803 | |
| 804 | 804 | $query = $this->getSelectPageSql($queryObject, $with_values, $start_count, $list_count); |
| 805 | 805 | |
| 806 | - $query .= (__DEBUG_QUERY__ & 1 && $queryObject->query_id) ? sprintf(' ' . $this->comment_syntax, $this->query_id) : ''; |
|
| 806 | + $query .= (__DEBUG_QUERY__ & 1 && $queryObject->query_id) ? sprintf(' '.$this->comment_syntax, $this->query_id) : ''; |
|
| 807 | 807 | $result = $this->_query($query, $connection); |
| 808 | - if($this->isError()) |
|
| 808 | + if ($this->isError()) |
|
| 809 | 809 | { |
| 810 | 810 | return $this->queryError($queryObject); |
| 811 | 811 | } |
@@ -813,7 +813,7 @@ discard block |
||
| 813 | 813 | $virtual_no = $total_count - ($page - 1) * $list_count; |
| 814 | 814 | $data = $this->_fetch($result, $virtual_no); |
| 815 | 815 | |
| 816 | - $buff = new Object (); |
|
| 816 | + $buff = new Object(); |
|
| 817 | 817 | $buff->total_count = $total_count; |
| 818 | 818 | $buff->total_page = $total_page; |
| 819 | 819 | $buff->page = $page; |
@@ -833,44 +833,44 @@ discard block |
||
| 833 | 833 | function getSelectPageSql($query, $with_values = true, $start_count = 0, $list_count = 0) |
| 834 | 834 | { |
| 835 | 835 | $select = $query->getSelectString($with_values); |
| 836 | - if($select == '') |
|
| 836 | + if ($select == '') |
|
| 837 | 837 | { |
| 838 | 838 | return new Object(-1, "Invalid query"); |
| 839 | 839 | } |
| 840 | - $select = 'SELECT ' . $select; |
|
| 840 | + $select = 'SELECT '.$select; |
|
| 841 | 841 | |
| 842 | 842 | $from = $query->getFromString($with_values); |
| 843 | - if($from == '') |
|
| 843 | + if ($from == '') |
|
| 844 | 844 | { |
| 845 | 845 | return new Object(-1, "Invalid query"); |
| 846 | 846 | } |
| 847 | - $from = ' FROM ' . $from; |
|
| 847 | + $from = ' FROM '.$from; |
|
| 848 | 848 | |
| 849 | 849 | $where = $query->getWhereString($with_values); |
| 850 | - if($where != '') |
|
| 850 | + if ($where != '') |
|
| 851 | 851 | { |
| 852 | - $where = ' WHERE ' . $where; |
|
| 852 | + $where = ' WHERE '.$where; |
|
| 853 | 853 | } |
| 854 | 854 | |
| 855 | 855 | $groupBy = $query->getGroupByString(); |
| 856 | - if($groupBy != '') |
|
| 856 | + if ($groupBy != '') |
|
| 857 | 857 | { |
| 858 | - $groupBy = ' GROUP BY ' . $groupBy; |
|
| 858 | + $groupBy = ' GROUP BY '.$groupBy; |
|
| 859 | 859 | } |
| 860 | 860 | |
| 861 | 861 | $orderBy = $query->getOrderByString(); |
| 862 | - if($orderBy != '') |
|
| 862 | + if ($orderBy != '') |
|
| 863 | 863 | { |
| 864 | - $orderBy = ' ORDER BY ' . $orderBy; |
|
| 864 | + $orderBy = ' ORDER BY '.$orderBy; |
|
| 865 | 865 | } |
| 866 | 866 | |
| 867 | 867 | $limit = $query->getLimitString(); |
| 868 | - if($limit != '') |
|
| 868 | + if ($limit != '') |
|
| 869 | 869 | { |
| 870 | 870 | $limit = sprintf(' LIMIT %d, %d', $start_count, $list_count); |
| 871 | 871 | } |
| 872 | 872 | |
| 873 | - return $select . ' ' . $from . ' ' . $where . ' ' . $groupBy . ' ' . $orderBy . ' ' . $limit; |
|
| 873 | + return $select.' '.$from.' '.$where.' '.$groupBy.' '.$orderBy.' '.$limit; |
|
| 874 | 874 | } |
| 875 | 875 | |
| 876 | 876 | } |
@@ -46,7 +46,9 @@ discard block |
||
| 46 | 46 | function DBMysql($auto_connect = TRUE) |
| 47 | 47 | { |
| 48 | 48 | $this->_setDBInfo(); |
| 49 | - if($auto_connect) $this->_connect(); |
|
| 49 | + if($auto_connect) { |
|
| 50 | + $this->_connect(); |
|
| 51 | + } |
|
| 50 | 52 | } |
| 51 | 53 | |
| 52 | 54 | /** |
@@ -214,8 +216,7 @@ discard block |
||
| 214 | 216 | if($arrayIndexEndValue) |
| 215 | 217 | { |
| 216 | 218 | $output[$arrayIndexEndValue--] = $tmp; |
| 217 | - } |
|
| 218 | - else |
|
| 219 | + } else |
|
| 219 | 220 | { |
| 220 | 221 | $output[] = $tmp; |
| 221 | 222 | } |
@@ -225,8 +226,7 @@ discard block |
||
| 225 | 226 | if(isset($arrayIndexEndValue)) |
| 226 | 227 | { |
| 227 | 228 | return $output; |
| 228 | - } |
|
| 229 | - else |
|
| 229 | + } else |
|
| 230 | 230 | { |
| 231 | 231 | return $output[0]; |
| 232 | 232 | } |
@@ -311,8 +311,7 @@ discard block |
||
| 311 | 311 | if($size) |
| 312 | 312 | { |
| 313 | 313 | $query .= sprintf(" %s(%s) ", $type, $size); |
| 314 | - } |
|
| 315 | - else |
|
| 314 | + } else |
|
| 316 | 315 | { |
| 317 | 316 | $query .= sprintf(" %s ", $type); |
| 318 | 317 | } |
@@ -490,8 +489,7 @@ discard block |
||
| 490 | 489 | if(!is_array($xml_obj->table->column)) |
| 491 | 490 | { |
| 492 | 491 | $columns[] = $xml_obj->table->column; |
| 493 | - } |
|
| 494 | - else |
|
| 492 | + } else |
|
| 495 | 493 | { |
| 496 | 494 | $columns = $xml_obj->table->column; |
| 497 | 495 | } |
@@ -517,12 +515,10 @@ discard block |
||
| 517 | 515 | if($primary_key) |
| 518 | 516 | { |
| 519 | 517 | $primary_list[] = $name; |
| 520 | - } |
|
| 521 | - else if($unique) |
|
| 518 | + } else if($unique) |
|
| 522 | 519 | { |
| 523 | 520 | $unique_list[$unique][] = $name; |
| 524 | - } |
|
| 525 | - else if($index) |
|
| 521 | + } else if($index) |
|
| 526 | 522 | { |
| 527 | 523 | $index_list[$index][] = $name; |
| 528 | 524 | } |
@@ -552,8 +548,9 @@ discard block |
||
| 552 | 548 | $schema = sprintf('create table `%s` (%s%s) %s;', $this->addQuotes($table_name), "\n", implode($column_schema, ",\n"), "ENGINE = MYISAM CHARACTER SET utf8 COLLATE utf8_general_ci"); |
| 553 | 549 | |
| 554 | 550 | $output = $this->_query($schema); |
| 555 | - if(!$output) |
|
| 556 | - return false; |
|
| 551 | + if(!$output) { |
|
| 552 | + return false; |
|
| 553 | + } |
|
| 557 | 554 | } |
| 558 | 555 | |
| 559 | 556 | /** |
@@ -584,8 +581,11 @@ discard block |
||
| 584 | 581 | $query = $this->getUpdateSql($queryObject, $with_values, true); |
| 585 | 582 | if(is_a($query, 'Object')) |
| 586 | 583 | { |
| 587 | - if(!$query->toBool()) return $query; |
|
| 588 | - else return; |
|
| 584 | + if(!$query->toBool()) { |
|
| 585 | + return $query; |
|
| 586 | + } else { |
|
| 587 | + return; |
|
| 588 | + } |
|
| 589 | 589 | } |
| 590 | 590 | |
| 591 | 591 | $query .= (__DEBUG_QUERY__ & 1 && $this->query_id) ? sprintf(' ' . $this->comment_syntax, $this->query_id) : ''; |
@@ -627,8 +627,7 @@ discard block |
||
| 627 | 627 | if($limit && $limit->isPageHandler()) |
| 628 | 628 | { |
| 629 | 629 | return $this->queryPageLimit($queryObject, $result, $connection, $with_values); |
| 630 | - } |
|
| 631 | - else |
|
| 630 | + } else |
|
| 632 | 631 | { |
| 633 | 632 | $query = $this->getSelectSql($queryObject, $with_values); |
| 634 | 633 | if(is_a($query, 'Object')) |
@@ -717,8 +716,7 @@ discard block |
||
| 717 | 716 | $buff->data = array(); |
| 718 | 717 | $buff->page_navigation = new PageHandler(/* $total_count */0, /* $total_page */1, /* $page */1, /* $page_count */10); //default page handler values |
| 719 | 718 | return $buff; |
| 720 | - } |
|
| 721 | - else |
|
| 719 | + } else |
|
| 722 | 720 | { |
| 723 | 721 | return; |
| 724 | 722 | } |
@@ -781,8 +779,7 @@ discard block |
||
| 781 | 779 | if($total_count) |
| 782 | 780 | { |
| 783 | 781 | $total_page = (int) (($total_count - 1) / $list_count) + 1; |
| 784 | - } |
|
| 785 | - else |
|
| 782 | + } else |
|
| 786 | 783 | { |
| 787 | 784 | $total_page = 1; |
| 788 | 785 | } |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | function DBMysql_innodb($auto_connect = TRUE) |
| 24 | 24 | { |
| 25 | 25 | $this->_setDBInfo(); |
| 26 | - if($auto_connect) $this->_connect(); |
|
| 26 | + if ($auto_connect) $this->_connect(); |
|
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | /** |
@@ -55,13 +55,13 @@ discard block |
||
| 55 | 55 | { |
| 56 | 56 | $connection = $this->_getConnection('master'); |
| 57 | 57 | |
| 58 | - if(!$transactionLevel) |
|
| 58 | + if (!$transactionLevel) |
|
| 59 | 59 | { |
| 60 | 60 | $this->_query("START TRANSACTION", $connection); |
| 61 | 61 | } |
| 62 | 62 | else |
| 63 | 63 | { |
| 64 | - $this->_query("SAVEPOINT SP" . $transactionLevel, $connection); |
|
| 64 | + $this->_query("SAVEPOINT SP".$transactionLevel, $connection); |
|
| 65 | 65 | } |
| 66 | 66 | return true; |
| 67 | 67 | } |
@@ -77,9 +77,9 @@ discard block |
||
| 77 | 77 | |
| 78 | 78 | $point = $transactionLevel - 1; |
| 79 | 79 | |
| 80 | - if($point) |
|
| 80 | + if ($point) |
|
| 81 | 81 | { |
| 82 | - $this->_query("ROLLBACK TO SP" . $point, $connection); |
|
| 82 | + $this->_query("ROLLBACK TO SP".$point, $connection); |
|
| 83 | 83 | } |
| 84 | 84 | else |
| 85 | 85 | { |
@@ -109,14 +109,14 @@ discard block |
||
| 109 | 109 | */ |
| 110 | 110 | function __query($query, $connection) |
| 111 | 111 | { |
| 112 | - if(!$connection) |
|
| 112 | + if (!$connection) |
|
| 113 | 113 | { |
| 114 | 114 | exit('XE cannot handle DB connection.'); |
| 115 | 115 | } |
| 116 | 116 | // Run the query statement |
| 117 | 117 | $result = @mysql_query($query, $connection); |
| 118 | 118 | // Error Check |
| 119 | - if(mysql_error($connection)) |
|
| 119 | + if (mysql_error($connection)) |
|
| 120 | 120 | { |
| 121 | 121 | $this->setError(mysql_errno($connection), mysql_error($connection)); |
| 122 | 122 | } |
@@ -140,13 +140,13 @@ discard block |
||
| 140 | 140 | $xml_obj = $oXml->parse($xml_doc); |
| 141 | 141 | // Create a table schema |
| 142 | 142 | $table_name = $xml_obj->table->attrs->name; |
| 143 | - if($this->isTableExists($table_name)) |
|
| 143 | + if ($this->isTableExists($table_name)) |
|
| 144 | 144 | { |
| 145 | 145 | return; |
| 146 | 146 | } |
| 147 | - $table_name = $this->prefix . $table_name; |
|
| 147 | + $table_name = $this->prefix.$table_name; |
|
| 148 | 148 | |
| 149 | - if(!is_array($xml_obj->table->column)) |
|
| 149 | + if (!is_array($xml_obj->table->column)) |
|
| 150 | 150 | { |
| 151 | 151 | $columns[] = $xml_obj->table->column; |
| 152 | 152 | } |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | $columns = $xml_obj->table->column; |
| 156 | 156 | } |
| 157 | 157 | |
| 158 | - foreach($columns as $column) |
|
| 158 | + foreach ($columns as $column) |
|
| 159 | 159 | { |
| 160 | 160 | $name = $column->attrs->name; |
| 161 | 161 | $type = $column->attrs->type; |
@@ -167,47 +167,47 @@ discard block |
||
| 167 | 167 | $default = $column->attrs->default; |
| 168 | 168 | $auto_increment = $column->attrs->auto_increment; |
| 169 | 169 | |
| 170 | - $column_schema[] = sprintf('`%s` %s%s %s %s %s', $name, $this->column_type[$type], $size ? '(' . $size . ')' : '', isset($default) ? "default '" . $default . "'" : '', $notnull ? 'not null' : '', $auto_increment ? 'auto_increment' : ''); |
|
| 170 | + $column_schema[] = sprintf('`%s` %s%s %s %s %s', $name, $this->column_type[$type], $size ? '('.$size.')' : '', isset($default) ? "default '".$default."'" : '', $notnull ? 'not null' : '', $auto_increment ? 'auto_increment' : ''); |
|
| 171 | 171 | |
| 172 | - if($primary_key) |
|
| 172 | + if ($primary_key) |
|
| 173 | 173 | { |
| 174 | 174 | $primary_list[] = $name; |
| 175 | 175 | } |
| 176 | - else if($unique) |
|
| 176 | + else if ($unique) |
|
| 177 | 177 | { |
| 178 | 178 | $unique_list[$unique][] = $name; |
| 179 | 179 | } |
| 180 | - else if($index) |
|
| 180 | + else if ($index) |
|
| 181 | 181 | { |
| 182 | 182 | $index_list[$index][] = $name; |
| 183 | 183 | } |
| 184 | 184 | } |
| 185 | 185 | |
| 186 | - if(count($primary_list)) |
|
| 186 | + if (count($primary_list)) |
|
| 187 | 187 | { |
| 188 | - $column_schema[] = sprintf("primary key (%s)", '`' . implode($primary_list, '`,`') . '`'); |
|
| 188 | + $column_schema[] = sprintf("primary key (%s)", '`'.implode($primary_list, '`,`').'`'); |
|
| 189 | 189 | } |
| 190 | 190 | |
| 191 | - if(count($unique_list)) |
|
| 191 | + if (count($unique_list)) |
|
| 192 | 192 | { |
| 193 | - foreach($unique_list as $key => $val) |
|
| 193 | + foreach ($unique_list as $key => $val) |
|
| 194 | 194 | { |
| 195 | - $column_schema[] = sprintf("unique %s (%s)", $key, '`' . implode($val, '`,`') . '`'); |
|
| 195 | + $column_schema[] = sprintf("unique %s (%s)", $key, '`'.implode($val, '`,`').'`'); |
|
| 196 | 196 | } |
| 197 | 197 | } |
| 198 | 198 | |
| 199 | - if(count($index_list)) |
|
| 199 | + if (count($index_list)) |
|
| 200 | 200 | { |
| 201 | - foreach($index_list as $key => $val) |
|
| 201 | + foreach ($index_list as $key => $val) |
|
| 202 | 202 | { |
| 203 | - $column_schema[] = sprintf("index %s (%s)", $key, '`' . implode($val, '`,`') . '`'); |
|
| 203 | + $column_schema[] = sprintf("index %s (%s)", $key, '`'.implode($val, '`,`').'`'); |
|
| 204 | 204 | } |
| 205 | 205 | } |
| 206 | 206 | |
| 207 | 207 | $schema = sprintf('create table `%s` (%s%s) %s;', $this->addQuotes($table_name), "\n", implode($column_schema, ",\n"), "ENGINE = INNODB CHARACTER SET utf8 COLLATE utf8_general_ci"); |
| 208 | 208 | |
| 209 | 209 | $output = $this->_query($schema); |
| 210 | - if(!$output) |
|
| 210 | + if (!$output) |
|
| 211 | 211 | { |
| 212 | 212 | return false; |
| 213 | 213 | } |
@@ -23,7 +23,9 @@ discard block |
||
| 23 | 23 | function DBMysql_innodb($auto_connect = TRUE) |
| 24 | 24 | { |
| 25 | 25 | $this->_setDBInfo(); |
| 26 | - if($auto_connect) $this->_connect(); |
|
| 26 | + if($auto_connect) { |
|
| 27 | + $this->_connect(); |
|
| 28 | + } |
|
| 27 | 29 | } |
| 28 | 30 | |
| 29 | 31 | /** |
@@ -58,8 +60,7 @@ discard block |
||
| 58 | 60 | if(!$transactionLevel) |
| 59 | 61 | { |
| 60 | 62 | $this->_query("START TRANSACTION", $connection); |
| 61 | - } |
|
| 62 | - else |
|
| 63 | + } else |
|
| 63 | 64 | { |
| 64 | 65 | $this->_query("SAVEPOINT SP" . $transactionLevel, $connection); |
| 65 | 66 | } |
@@ -80,8 +81,7 @@ discard block |
||
| 80 | 81 | if($point) |
| 81 | 82 | { |
| 82 | 83 | $this->_query("ROLLBACK TO SP" . $point, $connection); |
| 83 | - } |
|
| 84 | - else |
|
| 84 | + } else |
|
| 85 | 85 | { |
| 86 | 86 | $this->_query("ROLLBACK", $connection); |
| 87 | 87 | } |
@@ -149,8 +149,7 @@ discard block |
||
| 149 | 149 | if(!is_array($xml_obj->table->column)) |
| 150 | 150 | { |
| 151 | 151 | $columns[] = $xml_obj->table->column; |
| 152 | - } |
|
| 153 | - else |
|
| 152 | + } else |
|
| 154 | 153 | { |
| 155 | 154 | $columns = $xml_obj->table->column; |
| 156 | 155 | } |
@@ -172,12 +171,10 @@ discard block |
||
| 172 | 171 | if($primary_key) |
| 173 | 172 | { |
| 174 | 173 | $primary_list[] = $name; |
| 175 | - } |
|
| 176 | - else if($unique) |
|
| 174 | + } else if($unique) |
|
| 177 | 175 | { |
| 178 | 176 | $unique_list[$unique][] = $name; |
| 179 | - } |
|
| 180 | - else if($index) |
|
| 177 | + } else if($index) |
|
| 181 | 178 | { |
| 182 | 179 | $index_list[$index][] = $name; |
| 183 | 180 | } |