public function Box::setValues in Boxes 7.2
Set the values from a plugin
File
- includes/
boxes.core.inc, line 293 - Box classes and plugin interface
Class
- Box
- The Box entity class
Code
public function setValues($values) {
$this->data = array();
foreach ($this->plugin
->values() as $field => $value) {
$this->data[$field] = $values[$field];
}
}