setID example


class ConfigHandlerGroup extends ViewsFormBase {

  /** * Constructs a new ConfigHandlerGroup object. */
  public function __construct($type = NULL, $id = NULL) {
    $this->setType($type);
    $this->setID($id);
  }

  /** * {@inheritdoc} */
  public function getFormKey() {
    return 'handler-group';
  }

  /** * {@inheritdoc} */

class ConfigHandlerExtra extends ViewsFormBase {

  /** * Constructs a new ConfigHandlerExtra object. */
  public function __construct($type = NULL, $id = NULL) {
    $this->setType($type);
    $this->setID($id);
  }

  /** * {@inheritdoc} */
  public function getFormKey() {
    return 'handler-extra';
  }

  /** * {@inheritdoc} */

class ConfigHandler extends ViewsFormBase {

  /** * Constructs a new ConfigHandler object. */
  public function __construct($type = NULL, $id = NULL) {
    $this->setType($type);
    $this->setID($id);
  }

  /** * {@inheritdoc} */
  public function getFormKey() {
    return 'handler';
  }

  /** * {@inheritdoc} */
Home | Imprint | This part of the site doesn't use cookies.