2021-12-14 18:32:47 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2019-08-07 14:53:59 -05:00
|
|
|
|
2019-09-29 14:30:55 +01:00
|
|
|
abstract class ImageConfig
|
|
|
|
{
|
2021-12-14 18:32:47 +00:00
|
|
|
public const VERSION = 'ext_image_version';
|
2020-06-14 11:05:55 -05:00
|
|
|
|
2021-12-14 18:32:47 +00:00
|
|
|
public const THUMB_ENGINE = 'thumb_engine';
|
|
|
|
public const THUMB_WIDTH = 'thumb_width';
|
|
|
|
public const THUMB_HEIGHT = 'thumb_height';
|
|
|
|
public const THUMB_SCALING = 'thumb_scaling';
|
|
|
|
public const THUMB_QUALITY = 'thumb_quality';
|
|
|
|
public const THUMB_MIME = 'thumb_mime';
|
|
|
|
public const THUMB_FIT = 'thumb_fit';
|
|
|
|
public const THUMB_ALPHA_COLOR ='thumb_alpha_color';
|
2019-08-07 14:53:59 -05:00
|
|
|
|
2021-12-14 18:32:47 +00:00
|
|
|
public const SHOW_META = 'image_show_meta';
|
|
|
|
public const ILINK = 'image_ilink';
|
|
|
|
public const TLINK = 'image_tlink';
|
|
|
|
public const TIP = 'image_tip';
|
|
|
|
public const INFO = 'image_info';
|
|
|
|
public const EXPIRES = 'image_expires';
|
|
|
|
public const UPLOAD_COLLISION_HANDLER = 'upload_collision_handler';
|
2019-08-07 14:53:59 -05:00
|
|
|
|
2021-12-14 18:32:47 +00:00
|
|
|
public const COLLISION_MERGE = 'merge';
|
|
|
|
public const COLLISION_ERROR = 'error';
|
2020-10-08 17:07:33 -05:00
|
|
|
|
2021-12-14 18:32:47 +00:00
|
|
|
public const ON_DELETE = 'image_on_delete';
|
|
|
|
public const ON_DELETE_NEXT = 'next';
|
|
|
|
public const ON_DELETE_LIST = 'list';
|
2019-08-07 14:53:59 -05:00
|
|
|
}
|