Carbon_Fields\Field\Complex_Field::set_datastore PHP Method

set_datastore() public method

Set the datastore of this field.
public set_datastore ( Carbon_Fields\Datastore\Datastore_Interface $store )
$store Carbon_Fields\Datastore\Datastore_Interface
    public function set_datastore(Datastore_Interface $store)
    {
        $this->store = $store;
        foreach ($this->groups as $group) {
            $group->set_datastore($this->store);
        }
    }