Carbon_Fields\Datastore\Datastore_Interface::delete PHP Method

delete() public method

Delete the field value(s) from the database.
public delete ( Field $field )
$field Carbon_Fields\Field\Field The field to delete.
    public function delete(Field $field);

Usage Example

コード例 #1
0
ファイル: Field.php プロジェクト: Falkvinge/BlogTheme2016
 /**
  * Delegate delete to the field DataStore instance
  **/
 public function delete()
 {
     return $this->store->delete($this);
 }