1 | <?php |
||
2 | |||
3 | namespace Dynamic\Salsify\ORM; |
||
4 | |||
5 | use SilverStripe\Assets\Image; |
||
6 | use SilverStripe\ORM\DataExtension; |
||
7 | |||
8 | /** |
||
9 | * Class ImageDataExtension |
||
10 | * @package Dynamic\Salsify\ORM |
||
11 | * |
||
12 | * @property string Transformation |
||
13 | * |
||
14 | * @property-read ImageDataExtension|Image |
||
15 | */ |
||
16 | class ImageDataExtension extends DataExtension |
||
17 | { |
||
18 | |||
19 | /** |
||
20 | * @var array |
||
21 | */ |
||
22 | private static $db = [ |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
23 | 'Transformation' => 'Text', |
||
24 | ]; |
||
25 | } |
||
26 |