| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 41 | public function getMatrixFieldIds() |
||
| 42 | { |
||
| 43 | |||
| 44 | if (!$this->_matrixFieldIds) |
||
| 45 | { |
||
| 46 | $this->_matrixFieldIds = (new Query()) |
||
| 47 | ->select(['id']) |
||
| 48 | ->from('{{%fields}}') |
||
| 49 | ->where('type = :type', [':type' => 'craft\fields\Matrix']) |
||
| 50 | ->column(); |
||
| 51 | } |
||
| 52 | |||
| 53 | return $this->_matrixFieldIds; |
||
| 54 | |||
| 76 |