@@ 153-164 (lines=12) @@ | ||
150 | * |
|
151 | * @param Datastore_Interface $datastore |
|
152 | */ |
|
153 | public function set_datastore( Datastore_Interface $datastore, $set_as_default = false ) { |
|
154 | if ( $set_as_default && ! $this->has_default_datastore() ) { |
|
155 | return $this; // datastore has been overriden with a custom one - abort changing to a default one |
|
156 | } |
|
157 | $this->datastore = $datastore; |
|
158 | $this->has_default_datastore = $set_as_default; |
|
159 | ||
160 | foreach ( $this->groups as $group ) { |
|
161 | $group->set_datastore( $this->get_datastore(), true ); |
|
162 | } |
|
163 | return $this; |
|
164 | } |
|
165 | ||
166 | /** |
|
167 | * Retrieve all groups of fields. |
@@ 535-546 (lines=12) @@ | ||
532 | * @param Datastore_Interface $datastore |
|
533 | * @return object $this |
|
534 | */ |
|
535 | public function set_datastore( Datastore_Interface $datastore, $set_as_default = false ) { |
|
536 | if ( $set_as_default && ! $this->has_default_datastore() ) { |
|
537 | return $this; // datastore has been overriden with a custom one - abort changing to a default one |
|
538 | } |
|
539 | $this->datastore = $datastore; |
|
540 | $this->has_default_datastore = $set_as_default; |
|
541 | ||
542 | foreach ( $this->fields as $field ) { |
|
543 | $field->set_datastore( $this->get_datastore(), true ); |
|
544 | } |
|
545 | return $this; |
|
546 | } |
|
547 | ||
548 | /** |
|
549 | * Get the DataStore instance |