Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
50 | public function getUsedThemeName($channelCode) |
||
51 | { |
||
52 | $table = $this->getDocument()->find('css', 'table'); |
||
53 | |||
54 | $row = $this->tableManipulator->getRowWithFields($table, ['code' => $channelCode]); |
||
55 | |||
56 | return trim($this->tableManipulator->getFieldFromRow($table, $row, 'theme')->getText()); |
||
57 | } |
||
58 | |||
67 |