protected function NodeRegistrationNodeSettings::_fill in Node registration 7
Save values into the settings object.
1 call to NodeRegistrationNodeSettings::_fill()
- NodeRegistrationNodeSettings::__construct in includes/
node_registration.node_settings.inc - Init the node registration node settings object.
File
- includes/
node_registration.node_settings.inc, line 341 - Node settings class.
Class
- NodeRegistrationNodeSettings
- Node settings class.
Code
protected function _fill($values) {
foreach ($values as $name => $value) {
if (NULL !== $value) {
$this->{$name} = $value;
}
}
}