Version 1
[yaffs-website] / web / themes / contrib / bootstrap / src / Plugin / Process / Actions.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\bootstrap\Plugin\Process\Actions.
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 "actions" element.
15  *
16  * @ingroup plugins_process
17  *
18  * @BootstrapProcess("actions")
19  */
20 class Actions extends ProcessBase implements ProcessInterface {
21
22   /**
23    * {@inheritdoc}
24    */
25   public static function processElement(Element $element, FormStateInterface $form_state, array &$complete_form) {
26     foreach ($element->children() as $child) {
27       if ($child->isPropertyEmpty('icon')) {
28         $child->setIcon();
29       }
30     }
31   }
32
33 }