You are here

protected function HostingForm::isAField in Aegir Objects 7.3

2 calls to HostingForm::isAField()
HostingForm::getFormStateValue in classes/HostingForm.inc
HostingForm::setFormStateValue in classes/HostingForm.inc

File

classes/HostingForm.inc, line 105
The HostingForm class.

Class

HostingForm
@file The HostingForm class.

Code

protected function isAField($field) {
  $prefix = 'field_';
  return substr($field, 0, strlen($prefix)) === $prefix;
}