You are here

public function FeedsConfigurable::hasConfigForm in Feeds 7.2

Returns whether or not the configurable has a config form.

Return value

bool True if the configurable has a config form, and false if not.

File

includes/FeedsConfigurable.inc, line 265
FeedsConfigurable and helper functions.

Class

FeedsConfigurable
Base class for configurable classes.

Code

public function hasConfigForm() {
  $form_state = array();
  return (bool) $this
    ->configForm($form_state);
}