EstimateReadingTime.php
369 Bytes
<?php
namespace ACP\Column\Post;
use AC;
use ACP\Export;
use ACP\Sorting;
class EstimateReadingTime extends AC\Column\Post\EstimatedReadingTime
implements Sorting\Sortable, Export\Exportable {
public function sorting() {
return new Sorting\Model\Post\EstimateReadingTime();
}
public function export() {
return new Export\Model\StrippedValue( $this );
}
}