forked from rxu/thanks_for_posts
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
69 changed files
with
1,986 additions
and
1,743 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 |
---|---|---|
@@ -1,26 +1,28 @@ | ||
<?php | ||
/** | ||
* | ||
* Thanks For Posts extension for the phpBB Forum Software package. | ||
* | ||
* @copyright (c) 2013 phpBB Limited <https://www.phpbb.com> | ||
* @license GNU General Public License, version 2 (GPL-2.0) | ||
* | ||
*/ | ||
* | ||
* Thanks For Posts. | ||
* Adds the ability to thank the author and to use per posts/topics/forum rating system based on the count of thanks. | ||
* An extension for the phpBB Forum Software package. | ||
* | ||
* @copyright (c) 2020, rxu, https://www.phpbbguru.net | ||
* @license GNU General Public License, version 2 (GPL-2.0) | ||
* | ||
*/ | ||
|
||
namespace gfksx\thanksforposts\acp; | ||
|
||
class acp_thanks_info | ||
{ | ||
function module() | ||
{ | ||
return array( | ||
return [ | ||
'filename' => '\gfksx\thanksforposts\acp\acp_thanks_module', | ||
'title' => 'ACP_THANKS_SETTINGS', | ||
'version' => '1.3.4', | ||
'modes' => array( | ||
'thanks' => array('title' => 'ACP_THANKS_SETTINGS', 'auth' => 'ext_gfksx/thanksforposts && acl_a_board', 'cat' => array('ACP_THANKS')), | ||
), | ||
); | ||
'version' => '2.0.7', | ||
'modes' => [ | ||
'thanks' => ['title' => 'ACP_THANKS_SETTINGS', 'auth' => 'ext_gfksx/thanksforposts && acl_a_board', 'cat' => ['ACP_THANKS']], | ||
], | ||
]; | ||
} | ||
} |
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 |
---|---|---|
@@ -1,26 +1,28 @@ | ||
<?php | ||
/** | ||
* | ||
* Thanks For Posts extension for the phpBB Forum Software package. | ||
* | ||
* @copyright (c) 2013 phpBB Limited <https://www.phpbb.com> | ||
* @license GNU General Public License, version 2 (GPL-2.0) | ||
* | ||
*/ | ||
* | ||
* Thanks For Posts. | ||
* Adds the ability to thank the author and to use per posts/topics/forum rating system based on the count of thanks. | ||
* An extension for the phpBB Forum Software package. | ||
* | ||
* @copyright (c) 2020, rxu, https://www.phpbbguru.net | ||
* @license GNU General Public License, version 2 (GPL-2.0) | ||
* | ||
*/ | ||
|
||
namespace gfksx\thanksforposts\acp; | ||
|
||
class acp_thanks_refresh_info | ||
{ | ||
function module() | ||
{ | ||
return array( | ||
return [ | ||
'filename' => '\gfksx\thanksforposts\acp\acp_thanks_refresh_module', | ||
'title' => 'ACP_THANKS_REFRESH', | ||
'version' => '1.3.4', | ||
'modes' => array( | ||
'thanks' => array('title' => 'ACP_THANKS_REFRESH', 'auth' => 'ext_gfksx/thanksforposts && acl_a_board', 'cat' => array('ACP_THANKS')), | ||
), | ||
); | ||
'version' => '2.0.7', | ||
'modes' => [ | ||
'thanks' => ['title' => 'ACP_THANKS_REFRESH', 'auth' => 'ext_gfksx/thanksforposts && acl_a_board', 'cat' => ['ACP_THANKS']], | ||
], | ||
]; | ||
} | ||
} |
Oops, something went wrong.