File: D:/HostingSpaces/SBogers10/rentman2019.komma.pro/app/Komma/Dynamic/ComponentType/Types/Image.php
<?php
namespace App\Komma\Dynamic\ComponentType\Types;
use App\Komma\Dynamic\ComponentType\ComponentTypes;
use App\Komma\Kms\Core\Attributes\Attribute;
use App\Komma\Kms\Core\Attributes\Documents;
use App\Komma\Kms\Core\Attributes\Models\ImageProperty;
use App\Komma\Kms\Core\Attributes\OnOff;
use App\Komma\Kms\Core\Attributes\TextField;
class Image extends AbstractComponentType
{
public function __construct()
{
//Set an id that corresponds to the ComponentTypes enum
$this->id = ComponentTypes::IMAGE;
//Set icon and name
$this->name = 'image';
parent::__construct();
//Set the attributes
$this->attributes->push((new OnOff())
->setLabelText('Grey Background')
->setStyleClass('is-background-option')
->mapValueFrom(Attribute::ValueFromItself, 'grey_background')
);
$this->attributes->push((new Documents())
->setLabelText('image')
->onlyAllowImages()
->setSubFolder('component_uploads')
->setMaxDocuments(5)
->setImageProperties([
(new ImageProperty())->setName('original')->setCropMethod(ImageProperty::Resize)->setWidth(1200),
(new ImageProperty())->setName('large')->setCropMethod(ImageProperty::Resize)->setWidth(900),
(new ImageProperty())->setName('medium')->setCropMethod(ImageProperty::Resize)->setWidth(600),
(new ImageProperty())->setName('small')->setCropMethod(ImageProperty::Resize)->setWidth(375),
])
->setSmallDragAndDropArea()
->mapValueFrom(Attribute::ValueFromItself, 'image') //Needed to sustain Attribute integrity.
);
$this->attributes->push((new OnOff())
->setLabelText('Animated GIF')
->setExplanation('Only available when using 1 gif')
->mapValueFrom(Attribute::ValueFromItself, 'has_animation')
);
$this->attributes->push((new TextField('Optional: Caption'))
->setPlaceholderText('Ex. Manage the whole rental cycle')
->mapValueFrom(Attribute::ValueFromItself, 'caption'));
$this->attributes->push((new OnOff())
->setLabelText('Hide drop shadow')
->mapValueFrom(Attribute::ValueFromItself, 'is_inline')
);
$this->attributes->push((new TextField('Image url'))
->setPlaceholderText('URL to open when clicked')
->setExplanation('Starts with http or https')
->mapValueFrom(Attribute::ValueFromItself, 'image_url')
);
}
}