402919ff42abbc133c22431ae1acdab63edb072e
[yaffs-website] / web / themes / contrib / bootstrap / src / Plugin / Process / ManagedFile.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\bootstrap\Plugin\Process\ManagedFile.
5  */
6
7 namespace Drupal\bootstrap\Plugin\Process;
8
9 use Drupal\bootstrap\Annotation\BootstrapProcess;
10 use Drupal\bootstrap\Utility\Element;
11 use Drupal\Core\Form\FormStateInterface;
12
13 /**
14  * Processes the "managed_file" element.
15  *
16  * @ingroup plugins_process
17  *
18  * @BootstrapProcess("managed_file")
19  */
20 class ManagedFile extends ProcessBase implements ProcessInterface {
21
22   /**
23    * {@inheritdoc}
24    */
25   public static function processElement(Element $element, FormStateInterface $form_state, array &$complete_form) {
26     $ajax_wrapper_id = $element->upload_button->getProperty('ajax')['wrapper'];
27     if ($prefix = $element->getProperty('prefix')) {
28       $prefix = preg_replace('/<div id="' . $ajax_wrapper_id . '">/', '<div id="' . $ajax_wrapper_id . '" class="form-group">', $prefix);
29       $element->setProperty('prefix', $prefix);
30     }
31   }
32
33 }