You are here

FieldCollection.php in Little helpers 7

Same filename and directory in other branches
  1. 7.2 src/Field/FieldCollection.php

File

src/Field/FieldCollection.php
View source
<?php

namespace Drupal\little_helpers\Field;

class FieldCollection extends Field implements BundleInterface {

  /**
   *
   */
  public function getBundleName() {
    return $this->field_name;
  }

  /**
   *
   */
  public function getEntityType() {
    return 'field_collection';
  }

}

Classes

Namesort descending Description
FieldCollection