-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 1.0.0 . Changed some copyrights
- Loading branch information
Showing
11 changed files
with
39 additions
and
16 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
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 |
---|---|---|
|
@@ -4,8 +4,7 @@ | |
* simple_hide_bbcode [Arabic] | ||
* | ||
* @package language | ||
* @version $Id: simple_hide_bbcode.php,v 1.0 2007/08/04 ycl6 Exp $ | ||
* @copyright ycl6 < [email protected] > (Y.C. LIN) http://macphpbbmod.sourceforge.net/ | ||
* @copyright (c) 2015 Marco van Oort | ||
* @license http://opensource.org/licenses/gpl-license.php GNU Public License | ||
* | ||
* Translated By : Bassel Taha Alhitary - www.alhitary.net | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,7 @@ | |
* simple_hide_bbcode [English] | ||
* | ||
* @package language | ||
* @version $Id: simple_hide_bbcode.php,v 1.0 2007/08/04 ycl6 Exp $ | ||
* @copyright ycl6 < [email protected] > (Y.C. LIN) http://macphpbbmod.sourceforge.net/ | ||
* @copyright (c) 2015 Marco van Oort | ||
* @license http://opensource.org/licenses/gpl-license.php GNU Public License | ||
* | ||
*/ | ||
|
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 |
---|---|---|
|
@@ -4,8 +4,7 @@ | |
* simple_hide_bbcode [Spanish] | ||
* | ||
* @package language | ||
* @version $Id: simple_hide_bbcode.php,v 1.0 2007/08/04 ycl6 Exp $ | ||
* @copyright ycl6 < [email protected] > (Y.C. LIN) http://macphpbbmod.sourceforge.net/ | ||
* @copyright (c) 2015 Marco van Oort | ||
* @license http://opensource.org/licenses/gpl-license.php GNU Public License | ||
* Translated to the Spanish for zone_sjm https://www.phpbb.com/community/memberlist.php?mode=viewprofile&u=1497666 | ||
* | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,7 @@ | |
* simple_hide_bbcode [Russian] | ||
* | ||
* @package language | ||
* @version $Id: simple_hide_bbcode.php,v 1.0 2007/08/04 ycl6 Exp $ | ||
* @copyright ycl6 < [email protected] > (Y.C. LIN) http://macphpbbmod.sourceforge.net/ | ||
* @copyright (c) 2015 Marco van Oort | ||
* @license http://opensource.org/licenses/gpl-license.php GNU Public License | ||
* | ||
*/ | ||
|
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 |
---|---|---|
|
@@ -4,8 +4,7 @@ | |
* simple_hide_bbcode [简体中文] | ||
* | ||
* @package language | ||
* @version $Id: simple_hide_bbcode.php,v 1.0 2007/08/26 ycl6 Exp $ | ||
* @copyright ycl6 < [email protected] > (Y.C. LIN) http://macphpbbmod.sourceforge.net/ | ||
* @copyright (c) 2015 Marco van Oort | ||
* @license http://opensource.org/licenses/gpl-license.php GNU Public License | ||
* | ||
*/ | ||
|
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 |
---|---|---|
|
@@ -4,8 +4,7 @@ | |
* simple_hide_bbcode [正體中文] | ||
* | ||
* @package language | ||
* @version $Id: simple_hide_bbcode.php,v 1.0 2007/08/26 ycl6 Exp $ | ||
* @copyright ycl6 < [email protected] > (Y.C. LIN) http://macphpbbmod.sourceforge.net/ | ||
* @copyright (c) 2015 Marco van Oort | ||
* @license http://opensource.org/licenses/gpl-license.php GNU Public License | ||
* | ||
*/ | ||
|
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 | ||
/** | ||
* | ||
* Hide_BBcode | ||
* | ||
* @copyright (c) 2015 Marco van Oort | ||
* @license GNU General Public License, version 2 (GPL-2.0) | ||
* | ||
*/ | ||
|
||
namespace marcovo\hideBBcode\migrations; | ||
|
||
class v100_install_data extends \phpbb\db\migration\migration | ||
{ | ||
public function effectively_installed() | ||
{ | ||
return isset($this->config['hide_bbcode_version']) && version_compare($this->config['hide_bbcode_version'], '1.0.0', '>='); | ||
} | ||
|
||
static public function depends_on() | ||
{ | ||
return array('\marcovo\hideBBcode\migrations\install_data'); | ||
} | ||
|
||
public function update_data() | ||
{ | ||
return array( | ||
array('config.update', array('hide_bbcode_version', '1.0.0')), | ||
); | ||
} | ||
|
||
} |