Comments.php 489 Bytes
<?php

namespace ACP\Column\Media;

use AC;
use ACP\Export;
use ACP\Filtering;
use ACP\Search;

/**
 * @since 4.0
 */
class Comments extends AC\Column\Media\Comments
	implements Filtering\Filterable, Export\Exportable, Search\Searchable {

	public function filtering() {
		return new Filtering\Model\Media\Comments( $this );
	}

	public function export() {
		return new Export\Model\Post\Comments();
	}

	public function search() {
		return new Search\Comparison\Post\CommentCount();
	}

}