You are here

public function BrokenEntityQueueHandler::subqueueForm in Entityqueue 7

Generates an add/edit subqueue form for this handler.

Overrides EntityQueueHandlerBase::subqueueForm

File

plugins/entityqueue/handler/base.inc, line 206
Contains Entityqueue handler interface and base class.

Class

BrokenEntityQueueHandler
A NULL implementation of EntityQueueHandlerInterface.

Code

public function subqueueForm(EntitySubqueue $subqueue, &$form_state) {
  $form['handler'] = array(
    '#markup' => t('The selected handler is broken.'),
  );
  return $form;
}