|
12 | 12 | use craft\base\FieldInterface;
|
13 | 13 | use craft\fields\MissingField;
|
14 | 14 | use craft\fields\PlainText;
|
| 15 | +use craft\helpers\Db; |
15 | 16 | use craft\helpers\UrlHelper;
|
16 | 17 | use craft\models\FieldGroup;
|
17 | 18 | use craft\web\Controller;
|
@@ -145,7 +146,40 @@ public function actionEditField(int $fieldId = null, FieldInterface $field = nul
|
145 | 146 | // Field types
|
146 | 147 | // ---------------------------------------------------------------------
|
147 | 148 |
|
148 |
| - $allFieldTypes = $fieldsService->getAllFieldTypes(); |
| 149 | + /** @var string[]|FieldInterface[] $allFieldTypes */ |
| 150 | + |
| 151 | + if (!$field->id) { |
| 152 | + // Can be anything |
| 153 | + $allFieldTypes = $fieldsService->getAllFieldTypes(); |
| 154 | + } else if ($field::hasContentColumn()) { |
| 155 | + // Can only be field types with compatible column types |
| 156 | + $allFieldTypes = $fieldsService->getAllFieldTypes(); |
| 157 | + $fieldColumnType = $field->getContentColumnType(); |
| 158 | + |
| 159 | + foreach ($allFieldTypes as $i => $class) { |
| 160 | + if ($class === get_class($field)) { |
| 161 | + continue; |
| 162 | + } |
| 163 | + |
| 164 | + if (!$class::hasContentColumn()) { |
| 165 | + $compatible = false; |
| 166 | + } else { |
| 167 | + /** @var FieldInterface $tempField */ |
| 168 | + $tempField = new $class(); |
| 169 | + $compatible = Db::areColumnTypesCompatible($fieldColumnType, $tempField->getContentColumnType()); |
| 170 | + } |
| 171 | + |
| 172 | + if (!$compatible) { |
| 173 | + unset($allFieldTypes[$i]); |
| 174 | + } |
| 175 | + } |
| 176 | + |
| 177 | + // Reset keys |
| 178 | + $allFieldTypes = array_values($allFieldTypes); |
| 179 | + } else { |
| 180 | + // No column so no compatible field types |
| 181 | + $allFieldTypes = [get_class($field)]; |
| 182 | + } |
149 | 183 |
|
150 | 184 | // Make sure the selected field class is in there
|
151 | 185 | if (!in_array(get_class($field), $allFieldTypes, true)) {
|
|
0 commit comments