Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | protected function transform():string{ |
||
26 | |||
27 | if(empty($this->content)){ |
||
28 | return ''; |
||
29 | } |
||
30 | |||
31 | $id = $this->randomID(); |
||
32 | |||
33 | return '<div class="'.$this->tag.'-container">'. |
||
34 | '<div data-id="'.$id.'" class="'.$this->tag.'-header expander"><span>'.$this->tag.': '.$this->getAttribute('desc').'</span></div>'. // @todo: desc in tag attribute |
||
35 | '<div id="'.$id.'" class="'.$this->tag.'-body" style="display:none;">'.$this->content.'</div>'. |
||
36 | '</div>'; |
||
37 | } |
||
38 | |||
59 |