Path.php
431 Bytes
<?php
namespace ACP\Column\Post;
use AC;
use ACP\Editing;
use ACP\Sorting;
class Path extends AC\Column\Post\Path
implements Sorting\Sortable, Editing\Editable {
public function sorting() {
return is_post_type_hierarchical( $this->get_post_type() )
? new Sorting\Model\Post\Permalink()
: new Sorting\Model\Post\PostField( 'post_name' );
}
public function editing() {
return new Editing\Service\Post\Slug();
}
}