[3.3][DEV] phpBB Mark Topic

A place for Extension Authors to post and receive feedback on Extensions still in development. No Extensions within this forum should be used within a live environment!
Scam Warning
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

IMPORTANT: Extensions Development rules

IMPORTANT FOR NEEDED EVENTS!!!
If you need an event for your extension please read this for the steps to follow to request the event(s)
User avatar
Steve
Registered User
Posts: 1556
Joined: Tue Apr 07, 2009 7:48 pm
Location: Co. Durham, England
Name: Steven Clark

[3.3][DEV] phpBB Mark Topic

Post by Steve »

Name: phpBB Mark Topic

Request: Topic

Author: Steve

Description: Allows the topic author to mark/unmark the topic with a preset [prefix] and icon.

Version: 0.9.1-dev

Requirements: phpBB 3.3.7

Features:
  • One click button action (mark/unmark).
  • Set [prefix] per forum.
  • Set topic icon per forum.
  • Enable per forum.
  • Auto lock topic if enabled.
  • Group permissions.
  • Admins can always mark topic.
Screenshots:
Copy and paste the code into your browser

Code: Select all

https://www.stevenclark.eu/phpBB3/viewtopic.php?p=108#p108
Set up Instructions:

You must enable Mark Topic and choose a prefix or icon for the extension to be active!
  1. Visit ACP ⇾ permissions ⇾ Group permissions
    • select Group from : Look up user group
    • Misc [tab]
    • Can use Mark Topic [yes/no/never]
  2. Visit ACP ⇾ forums ⇾ Edit forum
    • Enable Mark Topic
    • Enable Mark Topic lock Topic (optional)
    • Mark Topic title prefix (optional)
    • Enable icon in Mark Topic button (optional)
    • Mark Topic icon (optional)
  3. Visit ACP ⇾ Board features ⇾
    • Enable Mark Topic [yes/no]
Download:
Copy and paste the code into your browser

Code: Select all

https://www.stevenclark.eu/phpBB3/download/file.php?id=91
Last edited by Steve on Fri Apr 08, 2022 2:57 pm, edited 3 times in total.
@ The Chief Medical Officers guideline for men is that: You are safest not to drink regularly more than 14 units per week.
- I drank that today++ :lol: 🍺
User avatar
mungbean
Registered User
Posts: 151
Joined: Sun Aug 14, 2011 7:03 am

Re: [3.3][DEV] phpBB Mark Topic

Post by mungbean »

Looking forward to implementing this on my site once the bugs are sorted!
User avatar
Steve
Registered User
Posts: 1556
Joined: Tue Apr 07, 2009 7:48 pm
Location: Co. Durham, England
Name: Steven Clark

Re: [3.3][DEV] phpBB Mark Topic

Post by Steve »

Sorry, I'm not very well. I updated the 1st post. Bug fixed and added topic icon with more options. ;)
@ The Chief Medical Officers guideline for men is that: You are safest not to drink regularly more than 14 units per week.
- I drank that today++ :lol: 🍺
User avatar
david63
Registered User
Posts: 20646
Joined: Thu Dec 19, 2002 8:08 am

Re: [3.3][DEV] phpBB Mark Topic

Post by david63 »

I would suggest that you fix your download as all of the files in the download are invalid
David
Remember: You only know what you know and - you don't know what you don't know!

I now no longer support any of my extensions but they will start to become available here
User avatar
Steve
Registered User
Posts: 1556
Joined: Tue Apr 07, 2009 7:48 pm
Location: Co. Durham, England
Name: Steven Clark

Re: [3.3][DEV] phpBB Mark Topic

Post by Steve »

david63 wrote: Fri Apr 08, 2022 11:59 am I would suggest that you fix your download as all the files in the download are invalid
Hmm. Windows OS? Let me re pack it without Keka.
@ The Chief Medical Officers guideline for men is that: You are safest not to drink regularly more than 14 units per week.
- I drank that today++ :lol: 🍺
User avatar
Steve
Registered User
Posts: 1556
Joined: Tue Apr 07, 2009 7:48 pm
Location: Co. Durham, England
Name: Steven Clark

Re: [3.3][DEV] phpBB Mark Topic

Post by Steve »

Download file should be fixed…
@ The Chief Medical Officers guideline for men is that: You are safest not to drink regularly more than 14 units per week.
- I drank that today++ :lol: 🍺
User avatar
mungbean
Registered User
Posts: 151
Joined: Sun Aug 14, 2011 7:03 am

Re: [3.3][DEV] phpBB Mark Topic

Post by mungbean »

Thank you. I hope you feel better mate.

I am about to download this and give it a try on my live site.
User avatar
mungbean
Registered User
Posts: 151
Joined: Sun Aug 14, 2011 7:03 am

Re: [3.3][DEV] phpBB Mark Topic

Post by mungbean »

Works great!

Just make sure to pay attention to the group permission step.

Is there anyway to capitalise the word 'mark' so it looks a bit more professional? To Mark as
Last edited by mungbean on Sun Apr 10, 2022 11:53 am, edited 1 time in total.
User avatar
Steve
Registered User
Posts: 1556
Joined: Tue Apr 07, 2009 7:48 pm
Location: Co. Durham, England
Name: Steven Clark

Re: [3.3][DEV] phpBB Mark Topic

Post by Steve »

If you know how to use notepad++ or similar code editor program.

Open: ext/steve/marktopic/language/en/common.php

find:

Code: Select all

    'MARKTOPIC_MARKED'		            => 'Topic marked %1$s',
    'MARKTOPIC_MARK'                        => 'mark %1$s ',
    'UNDO_MARKTOPIC'                        => 'Topic unmarked %1$s',
    'UNDO_MARKTOPIC_MARK'                   => 'unmark %1$s ',
replace with:

Code: Select all

    'MARKTOPIC_MARKED'		            => 'Topic marked as %1$s',
    'MARKTOPIC_MARK'                        => 'Mark as %1$s ',
    'UNDO_MARKTOPIC'                        => 'Topic unmarked as %1$s',
    'UNDO_MARKTOPIC_MARK'                   => 'Unmark as %1$s ',
If you're not comfortable doing that, I will upload new files tomorrow, I'm having issues with my Mac archive utility and need my window's laptop.
@ The Chief Medical Officers guideline for men is that: You are safest not to drink regularly more than 14 units per week.
- I drank that today++ :lol: 🍺
User avatar
mungbean
Registered User
Posts: 151
Joined: Sun Aug 14, 2011 7:03 am

Re: [3.3][DEV] phpBB Mark Topic

Post by mungbean »

Thanks for the quick reply. I can make those edits and will do so now.

Thank you for releasing this, it's perfect for our community.
User avatar
Steve
Registered User
Posts: 1556
Joined: Tue Apr 07, 2009 7:48 pm
Location: Co. Durham, England
Name: Steven Clark

Re: [3.3][DEV] phpBB Mark Topic

Post by Steve »

Your welcome.
@ The Chief Medical Officers guideline for men is that: You are safest not to drink regularly more than 14 units per week.
- I drank that today++ :lol: 🍺

Return to “Extensions in Development”