Improvement of Meeting Room Capacity Management

Created on 21 March 2025, 16 days ago

Currently, the maximum capacity is hardcoded in the system with a value of 10. This value should be part of the content type to allow modification per room.


    $max_capacity = 10;
    $options = [];
    for ($o = 1; $o <= $max_capacity; $o++) {
      $options[$o] = $o . " " . $this->t("Capacity");
    }

    $form['capacity'] = [
      '#type' => 'select',
      '#title' => $this->t('Capacity'),
      '#options' => $options,
      '#default_value' => 1,
      '#required' => TRUE,
    ];
Feature request
Status

Active

Version

11.1

Component

Code

Created by

🇫🇷France Ilyna

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024