| 1 | <?php |
||
| 13 | class DynamicModelSeederTask extends SeederTaskBase { |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Force the seeder to guess the field formaters |
||
| 17 | * |
||
| 18 | * @return mixed The the 'auto' seeding mode. |
||
| 19 | */ |
||
| 20 | public function getSeedingMode() { |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Take the model name from the argument list |
||
| 26 | * |
||
| 27 | * @return string The model name, taken from the argument list. |
||
| 28 | */ |
||
| 29 | public function getModelName() { |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Set/get the field formatters |
||
| 37 | * |
||
| 38 | * Just return the field formatters. |
||
| 39 | * |
||
| 40 | * {@inheritDoc} |
||
| 41 | */ |
||
| 42 | public function fieldFormatters() { |
||
| 45 | |||
| 46 | } |
||
| 47 |