2021-12-14 18:32:47 +00:00
< ? php
declare ( strict_types = 1 );
2019-08-07 14:53:59 -05:00
class PoolsInfo extends ExtensionInfo
{
public const KEY = " pools " ;
2021-03-14 23:43:50 +00:00
public string $key = self :: KEY ;
public string $name = " Pools System " ;
public array $authors = [ " Sein Kraft " => " mail@seinkraft.info " , " jgen " => " jgen.tech@gmail.com " , " Daku " => " admin@codeanimu.net " ];
public string $license = self :: LICENSE_GPLV2 ;
public string $description = " Allow users to create groups of images and order them. " ;
public ? string $documentation =
2019-08-07 14:53:59 -05:00
" This extension allows users to created named groups of images, and order the images within the group. Useful for related images like in a comic, etc. " ;
}