1
|
|
|
<?php |
2
|
|
|
namespace DorsetDigital\Elements; |
3
|
|
|
|
4
|
|
|
use DNADesign\Elemental\Models\BaseElement; |
5
|
|
|
use SilverStripe\AssetAdmin\Forms\UploadField; |
6
|
|
|
use SilverStripe\Assets\Image; |
7
|
|
|
use SilverStripe\Forms\DropdownField; |
8
|
|
|
use SilverStripe\Forms\HTMLEditor\HTMLEditorField; |
9
|
|
|
use SilverStripe\Forms\TextField; |
10
|
|
|
use SilverStripe\ORM\FieldType\DBField; |
11
|
|
|
|
12
|
|
|
|
13
|
|
|
class ImageTextElement extends BaseElement |
14
|
|
|
{ |
15
|
|
|
|
16
|
|
|
private static $singular_name = 'Text & Image Block'; |
|
|
|
|
17
|
|
|
private static $plural_name = 'Text & Image Blocks'; |
|
|
|
|
18
|
|
|
private static $description = 'Adds a block of text with accompanying image'; |
|
|
|
|
19
|
|
|
private static $table_name = 'DorsetDigital_Elements_ImageText'; |
|
|
|
|
20
|
|
|
private static $db = [ |
|
|
|
|
21
|
|
|
'Content' => 'HTMLText', |
|
|
|
|
22
|
|
|
'ImagePosition' => 'Varchar(10)', |
|
|
|
|
23
|
|
|
'ImageAlt' => 'Varchar(255)', |
|
|
|
|
24
|
|
|
'ImageWidth' => 'Varchar(10)' |
|
|
|
|
25
|
|
|
]; |
|
|
|
|
26
|
|
|
private static $many_many = [ |
|
|
|
|
27
|
|
|
'Image' => Image::class |
|
|
|
|
28
|
|
|
]; |
|
|
|
|
29
|
|
|
private static $owns = [ |
|
|
|
|
30
|
|
|
'Image' |
31
|
|
|
]; |
|
|
|
|
32
|
|
|
private static $inline_editable = false; |
|
|
|
|
33
|
|
|
|
34
|
|
|
private static $sizes = [ |
|
|
|
|
35
|
|
|
'half' => '1/2 page width', |
|
|
|
|
36
|
|
|
'third' => '1/3 page width', |
|
|
|
|
37
|
|
|
'quarter' => '1/4 page width', |
|
|
|
|
38
|
|
|
'sixth' => '1/6 page width' |
|
|
|
|
39
|
|
|
]; |
|
|
|
|
40
|
|
|
|
41
|
|
|
|
42
|
|
|
public function getCMSFields() |
|
|
|
|
43
|
|
|
{ |
44
|
|
|
$fields = parent::getCMSFields(); |
45
|
|
|
$fields->addFieldsToTab('Root.Main', [ |
46
|
|
|
HTMLEditorField::create('Content'), |
|
|
|
|
47
|
|
|
UploadField::create('Image') |
|
|
|
|
48
|
|
|
->setAllowedFileCategories('image/supported') |
49
|
|
|
->setFolderName('pageimages') |
50
|
|
|
->setAllowedMaxFileNumber(1), |
51
|
|
|
DropdownField::create('ImagePosition') |
|
|
|
|
52
|
|
|
->setSource([ 'after' => 'After Content', 'before' => 'Before Content' ]), |
53
|
|
|
TextField::create('ImageAlt')->setTitle('Alt text for the image'), |
|
|
|
|
54
|
|
|
DropdownField::create('ImageWidth') |
55
|
|
|
->setSource($this->config()->get('sizes')) |
56
|
|
|
->setDescription('Relative image size on larger screens. On smaller screens the image will flow before or after the text content, instead of sitting next to it.') |
|
|
|
|
57
|
|
|
]); |
|
|
|
|
58
|
|
|
return $fields; |
59
|
|
|
} |
|
|
|
|
60
|
|
|
|
61
|
|
|
public function getType() |
62
|
|
|
{ |
63
|
|
|
return 'Image & Text'; |
64
|
|
|
} |
65
|
|
|
|
66
|
|
|
|
67
|
|
|
} |
68
|
|
|
|