public function hostingService::setValues in Hosting 7.4
Same name and namespace in other branches
- 6.2 server/hosting_server.service.inc \hostingService::setValues()
- 7.3 server/hosting_server.service.inc \hostingService::setValues()
4 calls to hostingService::setValues()
File
- server/
hosting_server.service.inc, line 67 - Define the base Hosting service class.
Class
- hostingService
- @file Define the base Hosting service class.
Code
public function setValues($record = NULL) {
if (is_array($record)) {
foreach ($record as $key => $value) {
$this->{$key} = $value;
}
}
}