BrightnessTrait.php in Image Effects 8
File
src/Plugin/ImageToolkit/Operation/BrightnessTrait.php
View source
<?php
namespace Drupal\image_effects\Plugin\ImageToolkit\Operation;
trait BrightnessTrait {
protected function arguments() {
return [
'level' => [
'description' => 'The brightness level.',
],
];
}
protected function validateArguments(array $arguments) {
if (!is_numeric($arguments['level']) || !is_int($arguments['level'] + 5) || $arguments['level'] < -100 || $arguments['level'] > 100) {
throw new \InvalidArgumentException("Invalid level ('{$arguments['level']}') specified for the image 'brightness' operation");
}
return $arguments;
}
}