This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/rotate/info.php
2019-08-07 15:40:01 -05:00

25 lines
769 B
PHP

<?php
/*
* Name: Rotate Image
* Author: jgen <jgen.tech@gmail.com> / Agasa <hiroshiagasa@gmail.com>
* Description: Allows admins to rotate images.
* License: GPLv2
* Version: 0.1
* Notice:
* The image resize and resample code is based off of the "smart_resize_image"
* function copyright 2008 Maxim Chernyak, released under a MIT-style license.
* Documentation:
* This extension allows admins to rotate images.
*/
class RotateImageInfo extends ExtensionInfo
{
public const KEY = "rotate";
public $key = self::KEY;
public $name = "Rotate Image";
public $authors = ["jgen"=>"jgen.tech@gmail.com","Agasa"=>"hiroshiagasa@gmail.com"];
public $license = self::LICENSE_GPLV2;
public $description = "Allows admins to rotate images.";
}