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 type ImportFilter interfaces #49
- Loading branch information
Showing
4 changed files
with
92 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,23 @@ | ||
<?php # -*- coding: utf-8 -*- | ||
|
||
namespace W2M\Import\Filter; | ||
|
||
use | ||
W2M\Import\Type; | ||
|
||
/** | ||
* Interface CommentImportFilter | ||
* | ||
* @package W2M\Import\Filter | ||
*/ | ||
interface CommentImportFilter { | ||
|
||
/** | ||
* Checks if a comment should be imported or not | ||
* | ||
* @param Type\ImportCommentInterface $import_comment | ||
* | ||
* @return bool | ||
*/ | ||
public function comment_to_import( Type\ImportCommentInterface $import_comment ); | ||
} |
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,23 @@ | ||
<?php # -*- coding: utf-8 -*- | ||
|
||
namespace W2M\Import\Filter; | ||
|
||
use | ||
W2M\Import\Type; | ||
|
||
/** | ||
* Interface PostFilterInterface | ||
* | ||
* @package W2M\Import\Filter | ||
*/ | ||
interface PostFilterInterface { | ||
|
||
/** | ||
* 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 ); | ||
} |
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,23 @@ | ||
<?php # -*- coding: utf-8 -*- | ||
|
||
namespace W2M\Import\Filter; | ||
|
||
use | ||
W2M\Import\Type; | ||
|
||
/** | ||
* Interface TermFilterInterface | ||
* | ||
* @package W2M\Import\Filter | ||
*/ | ||
interface TermFilterInterface { | ||
|
||
/** | ||
* Checks if a term should be imported or not | ||
* | ||
* @param Type\ImportTermInterface $import_term | ||
* | ||
* @return bool | ||
*/ | ||
public function term_to_import( Type\ImportTermInterface $import_term ); | ||
} |
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,23 @@ | ||
<?php # -*- coding: utf-8 -*- | ||
|
||
namespace W2M\Import\Filter; | ||
|
||
use | ||
W2M\Import\Type; | ||
|
||
/** | ||
* Interface UserImportFilter | ||
* | ||
* @package W2M\Import\Filter | ||
*/ | ||
interface UserImportFilter { | ||
|
||
/** | ||
* Checks if a user should be imported or not | ||
* | ||
* @param Type\ImportUserInterface $import_user | ||
* | ||
* @return bool | ||
*/ | ||
public function user_to_import( Type\ImportUserInterface $import_user ); | ||
} |