View source
<?php
namespace Drupal\drupal_slider\Form;
use Drupal\Core\Form\FormStateInterface;
class SlideEditForm extends SlideBaseForm {
public function buildForm(array $form, FormStateInterface $form_state) {
$form = parent::buildForm($form, $form_state);
$slide = $this->entity;
$layers = $slide
->get('layers');
$layers_count = count($layers);
$num_names = $form_state
->get('num_names');
if ($num_names === NULL) {
$num_names = $layers_count;
$form_state
->set('num_names', $num_names);
}
for ($i = 1; $i <= $num_names; $i++) {
$single_layer = array_slice($layers, $i - 1, 1);
$form['layers'][$i]['#attributes']['class'][] = 'draggable';
$form['layers'][$i]['#weight'] = isset($single_layer[0]['weight']) ? $single_layer[0]['weight'] : $i;
$form['layers'][$i]['name'] = [
'#markup' => $i,
];
$form['layers'][$i]['attributes'] = [
'#type' => 'fieldset',
'#title' => '',
'#open' => TRUE,
];
$form['layers'][$i]['attributes']['horizontal'] = [
'#title' => 'Horizontal',
'#type' => 'textfield',
'#required' => TRUE,
'#default_value' => isset($single_layer[0]['attributes']['horizontal']) ? $single_layer[0]['attributes']['horizontal'] : '',
];
$form['layers'][$i]['attributes']['vertical'] = [
'#title' => 'Vertical',
'#type' => 'textfield',
'#required' => TRUE,
'#default_value' => isset($single_layer[0]['attributes']['vertical']) ? $single_layer[0]['attributes']['vertical'] : '',
];
$form['layers'][$i]['attributes']['show_delay'] = [
'#title' => 'Show delay',
'#type' => 'number',
'#required' => TRUE,
'#default_value' => isset($single_layer[0]['attributes']['show_delay']) ? $single_layer[0]['attributes']['show_delay'] : 0,
];
$form['layers'][$i]['attributes']['hide_delay'] = [
'#title' => 'Hide delay',
'#type' => 'number',
'#required' => TRUE,
'#default_value' => isset($single_layer[0]['attributes']['hide_delay']) ? $single_layer[0]['attributes']['hide_delay'] : 0,
];
$form['layers'][$i]['attributes']['show_transition'] = [
'#type' => 'select',
'#title' => $this
->t('Show transition'),
'#options' => [
'left' => $this
->t('Left'),
'right' => $this
->t('Right'),
'top' => $this
->t('Top'),
'bottom' => $this
->t('Bottom'),
'up' => $this
->t('Up'),
'down' => $this
->t('Down'),
],
'#default_value' => $single_layer[0]['attributes']['show_transition'],
];
$form['layers'][$i]['attributes']['hide_transition'] = [
'#type' => 'select',
'#title' => $this
->t('Hide transition'),
'#options' => [
'left' => $this
->t('Left'),
'right' => $this
->t('Right'),
'top' => $this
->t('Top'),
'bottom' => $this
->t('Bottom'),
'up' => $this
->t('Up'),
'down' => $this
->t('Down'),
],
'#default_value' => $single_layer[0]['attributes']['hide_transition'],
];
$form['layers'][$i]['weight'] = [
'#type' => 'weight',
'#title' => $this
->t('Weight'),
'#title_display' => 'invisible',
'#default_value' => isset($single_layer[0]['weight']) ? $single_layer[0]['weight'] : '',
'#attributes' => [
'class' => [
'table-sort-weight',
],
],
];
}
$form['actions']['add_name'] = [
'#type' => 'submit',
'#value' => $this
->t('Add one more'),
'#submit' => [
'::addOne',
],
'#ajax' => [
'callback' => '::addmoreCallback',
'wrapper' => 'names-fieldset-wrapper',
],
];
if ($num_names > 1) {
$form['actions']['remove_name'] = [
'#type' => 'submit',
'#value' => $this
->t('Remove one'),
'#submit' => [
'::removeCallback',
],
'#ajax' => [
'callback' => '::addmoreCallback',
'wrapper' => 'names-fieldset-wrapper',
],
];
}
return $form;
}
protected function actions(array $form, FormStateInterface $form_state) {
$actions = parent::actions($form, $form_state);
$actions['submit']['#value'] = $this
->t('Update Slide');
return $actions;
}
}