You are here

public function Pbf::isPublic in Permissions by field 8

Check if the field is tag as public.

Return value

bool The field is tag or not as public.

File

src/Plugin/Field/FieldType/Pbf.php, line 364

Class

Pbf
Plugin implementation of the 'pbf' field type.

Namespace

Drupal\pbf\Plugin\Field\FieldType

Code

public function isPublic() {
  if ($this->grant_public) {
    return TRUE;
  }
  return FALSE;
}