load() public method

Load the field value(s) from the database.
public load ( Field $field )
$field Carbon_Fields\Field\Field The field to retrieve value for.
Example #1
0
 /**
  * Delegate load to the field DataStore instance
  **/
 public function load()
 {
     $this->store->load($this);
     if ($this->get_value() === false) {
         $this->set_value($this->default_value);
     }
 }