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