You are here

protected function hostingService::mergeData in Hosting 7.4

Same name and namespace in other branches
  1. 6.2 server/hosting_server.service.inc \hostingService::mergeData()
  2. 7.3 server/hosting_server.service.inc \hostingService::mergeData()
3 calls to hostingService::mergeData()
hostingService::load in server/hosting_server.service.inc
hostingService_db_mysql::load in db_server/hosting_db_server.service.inc
hostingService_http_ssl::load in web_server/ssl/hosting_ssl.service.inc

File

server/hosting_server.service.inc, line 62
Define the base Hosting service class.

Class

hostingService
@file Define the base Hosting service class.

Code

protected function mergeData($query, $args = array()) {
  $result = db_query($query, $args)
    ->fetchAssoc();
  $this
    ->setValues($result);
}