This repository has been archived by the owner on Nov 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce PostTypeBlacklistFilter #49
- Loading branch information
Showing
1 changed file
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<?php # -*- coding: utf-8 -*- | ||
|
||
namespace W2M\Import\Filter; | ||
|
||
use | ||
W2M\Import\Type; | ||
|
||
/** | ||
* Class BlacklistPostTypeFilter | ||
* | ||
* Basically for development purposes | ||
* | ||
* @package W2M\Import\Filter | ||
*/ | ||
class BlacklistPostTypeFilter implements PostImportFilterInterface { | ||
|
||
/** | ||
* @var array | ||
*/ | ||
private $blacklist; | ||
|
||
/** | ||
* @var PostImportFilterInterface | ||
*/ | ||
private $filter; | ||
|
||
/** | ||
* @param array $blacklist | ||
* @param PostImportFilterInterface $filter (Optional) | ||
*/ | ||
public function __construct( array $blacklist, PostImportFilterInterface $filter = NULL ) { | ||
|
||
$this->blacklist = $blacklist; | ||
$this->filter = $filter | ||
? $filter | ||
: new PostPassThroughFilter; | ||
} | ||
/** | ||
* Checks if a post should be imported or not | ||
* | ||
* @param Type\ImportPostInterface $import_post | ||
* | ||
* @return bool | ||
*/ | ||
public function post_to_import( Type\ImportPostInterface $import_post ) { | ||
|
||
if ( ! in_array( $import_post->type(), $this->blacklist ) ) | ||
return FALSE; | ||
|
||
return $this->filter->post_to_import( $import_post ); | ||
} | ||
|
||
} |