Attachment.php 481 Bytes
<?php

namespace ACP\Column\Post;

use AC;
use ACP\Editing;
use ACP\Export;
use ACP\Sorting;

/**
 * @since 4.0
 */
class Attachment extends AC\Column\Post\Attachment
	implements Editing\Editable, Sorting\Sortable, Export\Exportable {

	public function sorting() {
		return new Sorting\Model\Post\Attachment();
	}

	public function editing() {
		return new Editing\Service\Post\Attachment();
	}

	public function export() {
		return new Export\Model\Post\Attachment( $this );
	}

}