[Forum] Extensions

Post Reply
User avatar
fpiSTM
Posts: 1738
Joined: Wed Dec 11, 2019 7:11 pm
Answers: 91
Location: Le Mans
Contact:

[Forum] Extensions

Post by fpiSTM »

Following Vassilis recommendation, the following extensions have been added:

• Privacy policy (for GPDR)
https://github.com/david63/privacypolicy

• highlighter
https://github.com/s9e/phpbb-ext-highlighter/

Code: Select all

 // the setup function runs once when you press reset or power the board
void setup() {
  // initialize digital pin LED_BUILTIN as an output.
  pinMode(LED_BUILTIN, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(LED_BUILTIN, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);                       // wait for a second
  digitalWrite(LED_BUILTIN, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);                       // wait for a second
}
• Simple mentions
https://www.phpbb.com/customise/db/exte ... e_mentions
This extensions add support for mentioning a user by starting to type a @ in the posting field.
Once you select a user from the dropdown, the

Code: Select all

[mention]
BBCode will be inserted and after submitting the post it will create a notification to that user.
@fpiSTM

• Best answer
https://www.phpbb.com/customise/db/exte ... st_answer/
https://github.com/kinerity/bestanswer
by fpiSTM » Thu Jan 02, 2020 2:22 pm
Is it the best answer ?
Yes
Go to full post
User avatar
fpiSTM
Posts: 1738
Joined: Wed Dec 11, 2019 7:11 pm
Answers: 91
Location: Le Mans
Contact:

Re: [Forum] Extensions

Post by fpiSTM »

Is it the best answer ?
Yes
User avatar
Jblb
Posts: 8
Joined: Fri Jan 03, 2020 4:19 pm
Location: Le Mans
Contact:

Re: [Forum] Extensions

Post by Jblb »

User avatar
fpiSTM
Posts: 1738
Joined: Wed Dec 11, 2019 7:11 pm
Answers: 91
Location: Le Mans
Contact:

Re: [Forum] Extensions

Post by fpiSTM »

Hi @Jblb

I thought to add it as it is really useful like on GitHub.
So, it's done. ;)
Post Reply

Return to “Forum rules, FAQs and HowTo's”