public function OverviewForm::buildForm in Markdown 8.2
Form constructor.
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
array The form structure.
Overrides ConfigFormBase::buildForm
File
- src/
Form/ OverviewForm.php, line 103
Class
Namespace
Drupal\markdown\FormCode
public function buildForm(array $form, FormStateInterface $form_state) {
$form = parent::buildForm($form, $form_state);
$defaultParser = $this->parserManager
->getDefaultParser();
$form['#attached']['library'][] = 'markdown/admin';
$form['weights'] = [
'#tree' => TRUE,
];
$form['enabled'] = [
'#type' => 'details',
'#description' => $this
->t('The default parser will be used in the event a parser was requested but not explicitly specified (i.e. Twig template). Ordering parsers will return them in a specific order when multiple parsers are requested (i.e. display benchmarking/parsing differences).'),
'#description_display' => 'after',
];
$form['enabled']['table'] = [
'#type' => 'table',
'#theme' => 'table__markdown_enabled_parsers',
'#tabledrag' => [
[
'action' => 'order',
'relationship' => 'self',
'group' => 'parser-weight',
],
],
'#attributes' => [
'class' => [
'markdown-enabled-parsers',
],
],
'#header' => [
'parser' => $this
->t('Parser'),
'status' => $this
->t('Status'),
'weight' => $this
->t('Weight'),
'ops' => $this
->t('Operations'),
],
'#rows' => [],
];
$enabledParsers =& $form['enabled']['table']['#rows'];
$form['disabled'] = [
'#type' => 'details',
];
$form['disabled']['table'] = [
'#type' => 'table',
'#theme' => 'table__markdown_disabled_parsers',
'#header' => [
'parser' => $this
->t('Parser'),
'status' => $this
->t('Status'),
'ops' => $this
->t('Operations'),
],
'#attributes' => [
'class' => [
'markdown-disabled-parsers',
],
],
'#rows' => [],
];
$disabledParsers =& $form['disabled']['table']['#rows'];
$form['unavailable'] = [
'#type' => 'details',
];
$form['unavailable']['table'] = [
'#type' => 'table',
'#theme' => 'table__markdown_unavailable_parsers',
'#header' => [
'parser' => $this
->t('Parser'),
'status' => $this
->t('Status'),
],
'#attributes' => [
'class' => [
'markdown-unavailable-parsers',
],
],
'#rows' => [],
];
$unavailableParsers =& $form['unavailable']['table']['#rows'];
$configurations = [];
foreach (array_keys($this->parserManager
->getDefinitions(FALSE)) as $parser_id) {
$configurations[$parser_id] = $this
->config("markdown.parser.{$parser_id}")
->get() ?: [];
}
// Iterate over the parsers.
foreach ($this->parserManager
->all($configurations) as $name => $parser) {
$isDefault = $defaultParser
->getPluginId() === $name;
$installed = FALSE;
$enabled = $parser
->isEnabled();
if ($installedLibrary = $parser
->getInstalledLibrary()) {
$installed = TRUE;
if ($enabled) {
$table =& $enabledParsers;
}
else {
$table =& $disabledParsers;
}
$library = $installedLibrary;
}
elseif ($preferredLibrary = $parser
->getPreferredLibrary()) {
$table =& $unavailableParsers;
$library = $preferredLibrary;
}
else {
continue;
}
$rowClasses = [];
$label = $parser
->getLabel(FALSE);
$link = $parser
->getLink($label);
$row = [];
$row['parser'] = [
'class' => [
'parser',
],
'data' => [
'#type' => 'item',
'#title' => $parser
->getLink($isDefault ? new FormattableMarkup('@link (default)', [
'@link' => $link,
]) : $label),
'#description' => $parser
->getDescription(),
'#description_display' => 'after',
],
];
$row['status'] = [
'class' => [
'status',
],
'data' => [
'#theme' => 'installable_library',
'#plugin' => $parser,
'#library' => $library,
],
];
$ops = [];
$dialogOptions = [
'attributes' => [
'class' => [
'use-ajax',
],
'data-dialog-type' => 'modal',
'data-dialog-options' => Json::encode([
'width' => 700,
]),
],
];
$options = [
'query' => \Drupal::destination()
->getAsArray(),
];
if ($installed && $enabled) {
$ops['edit'] = [
'title' => $this
->t('Edit'),
'url' => Url::fromRoute('markdown.parser.edit', [
'parser' => $parser,
], $options),
];
$ops['disable'] = [
'title' => $this
->t('Disable'),
'url' => Url::fromRoute('markdown.parser.confirm_operation', [
'parser' => $parser,
'operation' => 'disable',
], $dialogOptions),
];
if (!$isDefault) {
$ops['default'] = [
'title' => $this
->t('Set as default'),
'url' => Url::fromRoute('markdown.parser.confirm_operation', [
'parser' => $parser,
'operation' => 'default',
], $dialogOptions),
];
}
$rowClasses[] = 'draggable';
$form['weights'][$name] = [
'#type' => 'number',
'#title' => $this
->t('Weight for @title', [
'@title' => $label,
]),
'#title_display' => 'invisible',
'#size' => 6,
'#default_value' => $parser
->getWeight(),
'#attributes' => [
'class' => [
'parser-weight',
],
],
];
$row['weight'] = [
'class' => [
'weight',
],
'data' => &$form['weights'][$name],
];
$form['weights'][$name]['#printed'] = TRUE;
$table[$name] = [
'class' => [
'draggable',
],
'data' => $row,
];
}
elseif ($installed && !$enabled) {
$ops['enable'] = [
'title' => $this
->t('Enable'),
'url' => Url::fromRoute('markdown.parser.confirm_operation', [
'parser' => $parser,
'operation' => 'enable',
], $dialogOptions),
];
}
if ($ops) {
$row['ops'] = [
'class' => [
'ops',
],
'data' => [
'#type' => 'dropbutton',
'#dropbutton_type' => 'small',
'#attached' => [
'library' => [
'core/drupal.dialog.ajax',
],
],
'#links' => $ops,
],
];
}
$table[$name] = [
'class' => $rowClasses,
'data' => $row,
];
}
$form['enabled']['#title'] = $this
->t('Enabled Parsers (@count)', [
'@count' => count($enabledParsers),
]);
$form['disabled']['#title'] = $this
->t('Disabled Parsers (@count)', [
'@count' => count($disabledParsers),
]);
$form['unavailable']['#title'] = $this
->t('Unavailable Parsers (@count)', [
'@count' => count($unavailableParsers),
]);
$form['enabled']['#access'] = !!$enabledParsers;
$form['disabled']['#access'] = !!$disabledParsers;
$form['unavailable']['#access'] = !!$unavailableParsers;
$form['enabled']['#open'] = FALSE;
$form['disabled']['#open'] = FALSE;
$form['unavailable']['#open'] = FALSE;
if ($enabledParsers) {
$form['enabled']['#open'] = TRUE;
}
elseif ($disabledParsers) {
$form['disabled']['#open'] = TRUE;
}
elseif ($unavailableParsers) {
$form['unavailable']['#open'] = TRUE;
}
return $form;
}