You are here

public function CropType::getHardLimit in Crop API 8

Same name and namespace in other branches
  1. 8.2 src/Entity/CropType.php \Drupal\crop\Entity\CropType::getHardLimit()

Returns width and height hard limit values.

Return value

array Width and height values.

Overrides CropTypeInterface::getHardLimit

File

src/Entity/CropType.php, line 152

Class

CropType
Defines the Crop type configuration entity.

Namespace

Drupal\crop\Entity

Code

public function getHardLimit() {
  return [
    'width' => $this->hard_limit_width,
    'height' => $this->hard_limit_height,
  ];
}