for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Icybee\Modules\Files\Block\ManageBlock;
use Icybee\Block\ManageBlock\Column;
use Icybee\Block\ManageBlock\FilterDecorator;
/**
* Representation of the `mime` column.
*/
class MimeColumn extends Column
{
public function render_cell($record)
return new FilterDecorator($record, $this->id, $this->manager->is_filtering($this->id));
}