You are here

DoUpdate.php in Optimizely 8

Same filename and directory in other branches
  1. 8.0 src/DoUpdate.php

Namespace

Drupal\optimizely

File

src/DoUpdate.php
View source
<?php

namespace Drupal\optimizely;


/**
 * Form builder class for project adds and updates.
 */
class DoUpdate {

  /**
   * Form builder for route optimizely.add_update.oid .
   */
  public static function buildUpdateForm($oid) {
    return \Drupal::formBuilder()
      ->getForm('Drupal\\optimizely\\AddUpdateForm', $oid);
  }

}

Classes

Namesort descending Description
DoUpdate Form builder class for project adds and updates.