Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public function buildHeader() { |
||
17 | $header = []; |
||
18 | $header['label'] = $this->t('Embed button'); |
||
19 | $header['embed_type'] = $this->t('Embed type'); |
||
20 | $header['icon'] = [ |
||
21 | 'data' => $this->t('Icon'), |
||
22 | 'class' => [RESPONSIVE_PRIORITY_LOW], |
||
23 | ]; |
||
24 | return $header + parent::buildHeader(); |
||
25 | } |
||
26 | |||
50 |