-
-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for default language code as console command option
- Loading branch information
1 parent
65ac388
commit 33de6d8
Showing
4 changed files
with
76 additions
and
13 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,32 @@ | ||
<?php | ||
|
||
namespace Kaliop\eZMigrationBundle\API; | ||
|
||
interface LanguageAwareInterface | ||
{ | ||
/** | ||
* Injects language code, with xxx-YY format. | ||
* e.g. fre-FR | ||
* | ||
* @param string $languageCode | ||
*/ | ||
public function setLanguageCode($languageCode); | ||
|
||
/** | ||
* @return string | ||
*/ | ||
public function getLanguageCode(); | ||
|
||
/** | ||
* Sets default language code, with xxx-YY format. | ||
* e.g. fre-FR | ||
* | ||
* @param string $languageCode | ||
*/ | ||
public function setDefaultLanguageCode($languageCode); | ||
|
||
/** | ||
* @return string | ||
*/ | ||
public function getDefaultLanguageCode(); | ||
} |
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
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
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