Jake B.
Well-known member
PHP:
<?php
namespace XF\Cli\Command\Rebuild;
class RebuildAttachmentThumb extends AbstractRebuildCommand
{
protected function getRebuildName()
{
return 'attachment-thumbnails';
}
protected function getRebuildDescription()
{
return 'Rebuilds attachment thumbnails.';
}
protected function getRebuildClass()
{
return 'XF:AttachmentThumb';
}
}
Upvote
6