FormLocation.php

Same filename and directory in other branches
  1. main core/modules/comment/src/FormLocation.php

Namespace

Drupal\comment

File

core/modules/comment/src/FormLocation.php

View source
<?php

declare (strict_types=1);
namespace Drupal\comment;


/**
 * Options for comment form display.
 */
enum FormLocation : int
{
  // Comment form should be displayed on a separate page.
  case SeparatePage = 0;
  // Comment form should be shown below post or list of comments.
  case Below = 1;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.