Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function getUsedThemeName(string $channelCode): ?string |
||
21 | { |
||
22 | $table = $this->getDocument()->find('css', 'table'); |
||
23 | |||
24 | $row = $this->getTableAccessor()->getRowWithFields($table, ['code' => $channelCode]); |
||
25 | |||
26 | return trim($this->getTableAccessor()->getFieldFromRow($table, $row, 'themeName')->getText()); |
||
27 | } |
||
28 | } |
||
29 |