-
Notifications
You must be signed in to change notification settings - Fork 2
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
3 changed files
with
52 additions
and
19 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,9 +1,15 @@ | ||
# Bookmark-Post | ||
A plugin for MyBB to Bookmark posts those are important to get quick access on a later stage | ||
|
||
## TODO: | ||
- Some Settings | ||
## Implemented Features | ||
- Users can bookmark any visible post the feel useful for future reference | ||
- The list of bookmarked posts appears in user's UCP for quick access | ||
|
||
## Planned Features | ||
- Add personalized notes against each bookmarked post | ||
- AJAX bookmark removal | ||
- Remove bookmarks directly from UCP | ||
- Remove bookmarks directly from UCP | ||
- Show number of posts bookmarked by the user in user profile | ||
- Show number of posts made by the user that others bookmarked in user profile | ||
- Limit bookmarking per usergroup (might be useful for those paid group promotion sites) | ||
- Export bookmarked posts (?) |
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,4 +1,10 @@ | ||
<?php | ||
|
||
$l['markpost_title'] = "Bookmark Post"; | ||
$l['markpost_desc'] = "Bookmark posts those are important to get quick access on a later stage."; | ||
$l['markpost_per_page_title'] = "Bookmarks Per Page"; | ||
$l['markpost_per_page_desc'] = "Define the number of bookmarked posts that will be listed in a single page in UCP"; | ||
$l['markpost_force_redirect_title'] = "Force Redirect Page"; | ||
$l['markpost_force_redirect_desc'] = "Force user to see redirect page after adding / removing bookmarks for status message"; | ||
$l['markpost_uninstall'] = "Uninstall Markpost"; | ||
$l['markpost_uninstall_message'] = "Are you sure you want to delete all the existing data of Mark Post?<br>If you choose 'No' the accumulated data will remain in the database for future reference / usage.<br>Choosing 'Yes' will drop the table wiping all data and this can not be undone."; |
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