Page 1 of 1

[Forum] Extensions

Posted: Thu Jan 02, 2020 1:35 pm
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

Re: [Forum] Extensions

Posted: Thu Jan 02, 2020 2:22 pm
by fpiSTM
Is it the best answer ?
Yes

Re: [Forum] Extensions

Posted: Mon Jan 06, 2020 11:10 pm
by Jblb

Re: [Forum] Extensions

Posted: Tue Jan 07, 2020 3:57 pm
by fpiSTM
Hi @Jblb

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