Scheduled Maintenance: 10-11-2025 Electricity company maintenance between 09:00 and 15:00.
<span class="qte-attr qte_31_32-qte">3.1.x & 3.2.x</span>
[phpBB Debug] PHP Warning : in file [ROOT]/vendor/twig/twig/src/Template.php on line 359 : Array to string conversion
Array
dmzx
Founder
Status:
Offline
User theme: Dark
Posts: 6469 Joined: Jan 13th, '14, 20:45
Post
by dmzx » Jan 27th, '16, 21:37
Extension Name: Note Extension
Author: dmzx
Special thanks to: martin
Extension Description:
This extension will add a note bbCode selection box in posting template.
dmzx/Note-Extension
Add class
Screenshots:
Extension Download:
Installation:
Download the latest release.
Unzip the downloaded release, and change the name of the folder to `note `.
In the `ext ` directory of your phpBB board, create a new directory named `dmzx ` (if it does not already exist).
Copy the `note ` folder to `/ext/dmzx/ ` if done correctly, you'll have the main extension class at
(your forum root)/ext/dmzx/note/composer.json
Navigate in the ACP to `Customise -> Manage extensions`
Look for `Note Extension ` under the Disabled Extensions list, and click its `Enable ` link.
[phpBB Debug] PHP Warning : in file [ROOT]/vendor/twig/twig/src/Template.php on line 359 : Array to string conversion
Array
TWEagle
Users
Status:
Offline
User theme: Dark
Posts: 74 Joined: Nov 23rd, '14, 19:38
Post
by TWEagle » Jan 28th, '16, 09:50
This doesn't work in combination with the advanced BB-Code extension??
[phpBB Debug] PHP Warning : in file [ROOT]/vendor/twig/twig/src/Template.php on line 359 : Array to string conversion
Array
uruguayito
Donator
Status:
Offline
User theme: Dark
Posts: 120 Joined: Jul 2nd, '15, 17:40
Post
by uruguayito » Jan 28th, '16, 14:25
I like it....
Question: if posibble make that only Mods and Amins can use it?
Sorry for my bad English.
I'm a latin american man.
Spanish is my language.
[phpBB Debug] PHP Warning : in file [ROOT]/vendor/twig/twig/src/Template.php on line 359 : Array to string conversion
Array
dmzx
Founder
Status:
Offline
User theme: Dark
Posts: 6469 Joined: Jan 13th, '14, 20:45
Post
by dmzx » Jan 28th, '16, 18:44
uruguayito wrote: Jan 28th, '16, 14:25
I like it....
Question: if posibble make that only Mods and Amins can use it?
Will take a look at it.
[phpBB Debug] PHP Warning : in file [ROOT]/vendor/twig/twig/src/Template.php on line 359 : Array to string conversion
Array
martin
Admin
Status:
Offline
User theme: Dark
Posts: 5106 Joined: Apr 6th, '14, 14:12
Post
by martin » Jan 29th, '16, 09:55
Got a version of this that now that installs it on mchat too also fixed the going off the chatbox.
77.png
78.png
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
[phpBB Debug] PHP Warning : in file [ROOT]/vendor/twig/twig/src/Template.php on line 359 : Array to string conversion
Array
nelflucifer
Users
Status:
Offline
User theme: Dark
Posts: 70 Joined: Jan 3rd, '16, 11:24
Post
by nelflucifer » Jan 29th, '16, 11:54
Thank you! Beautiful! Another would be for the Administration of any colour special =)
RUSSIAN LG
common.zip
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
[phpBB Debug] PHP Warning : in file [ROOT]/vendor/twig/twig/src/Template.php on line 359 : Array to string conversion
Array
clight77
Donator
Status:
Offline
User theme: Dark
Posts: 502 Joined: Sep 24th, '15, 14:23
Post
by clight77 » Jan 29th, '16, 17:02
I love this :)
[phpBB Debug] PHP Warning : in file [ROOT]/vendor/twig/twig/src/Template.php on line 359 : Array to string conversion
Array
Sniper_E
VIP
Status:
Offline
User theme: Dark
Posts: 1157 Joined: Oct 14th, '14, 17:01
Post
by Sniper_E » Feb 1st, '16, 04:55
Code: Select all
<select class="gensmall" name="note" onchange="bbfontstyle('[note=' + this.options[this.selectedIndex].value + '', '[/note]');this.selectedIndex = 0;" title="{L_BBCODE_NOTE_HELP}" style="height: 21px;">Making that
style="height: 21px; lines up with the other buttons. Your 17px was too small.
And I use a css that will kick in the extra margins on mobile size view. This also corrects the drop down selections layout.
Code: Select all
.note-box {
background-color: #ebebeb;
border: 1px solid #bbb;
border-radius: 6px;
color: #333;
font-size: 12px;
padding: 2px 6px;
}
.note-box.blue {
background-color: #94c4ff;
border-color: #6b92bd;
color: #115098;
}
.note-box.yellow {
background-color: #fffa78;
border-color: #FFE403;
color: #333300;
}
.note-box.green {
background-color: #a7ff93;
border-color: #43a347;
color: #043300;
}
.note-box.red {
background-color: #ff9393;
border-color: #a30004;
color: #330002;
}
.note-box.black {
background-color: #2D2D2D;
border-color: #000000;
color: #999999;
}
@media only screen and (max-width: 550px), only screen and (max-device-width: 550px) {
.note-box {
width: auto;
margin-right: 20px;
}
}
@media only screen and (max-width: 350px), only screen and (max-device-width: 350px) {
.note-box {
text-align: justify;
width: auto;
margin-right: 30px;
margin-top: 20px;
}
}
No is NEVER an Option and NEVER is the only Option when it comes to Giving Up!™
[phpBB Debug] PHP Warning : in file [ROOT]/vendor/twig/twig/src/Template.php on line 359 : Array to string conversion
Array
martin
Admin
Status:
Offline
User theme: Dark
Posts: 5106 Joined: Apr 6th, '14, 14:12
Post
by martin » Feb 1st, '16, 07:00
Code: Select all
.note-box {
background-color: #ebebeb;
border: 1px solid #bbb;
border-radius: 6px;
color: #333;
font-size: 12px;
padding: 2px 6px;
}
Works well in the forum but not in chat on smaller screens and mobiles this will allow the note to go out side of the chat window also cover chat icons.
Version 1.0.1 this has been fixed as it also adds it to chat.
[phpBB Debug] PHP Warning : in file [ROOT]/vendor/twig/twig/src/Template.php on line 359 : Array to string conversion
Array
Sniper_E
VIP
Status:
Offline
User theme: Dark
Posts: 1157 Joined: Oct 14th, '14, 17:01
Post
by Sniper_E » Feb 2nd, '16, 02:36
martin wrote: Jan 29th, '16, 09:55
Got a version of this that now that installs it on mchat too also fixed the going off the chatbox.
I don't think mine goes off the chatbox either. Those margins do kick in when they are needed.
And my drop down box in desktop looks better without the margins and radius.
How does your drop down box look?
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
[phpBB Debug] PHP Warning : in file [ROOT]/vendor/twig/twig/src/Template.php on line 359 : Array to string conversion
Array
martin
Admin
Status:
Offline
User theme: Dark
Posts: 5106 Joined: Apr 6th, '14, 14:12
Post
by martin » Feb 2nd, '16, 03:22
Mine on mobile
Screenshot_2016-02-02-03-16-26.png
your on mobile
Screenshot_2016-02-02-03-16-47.png
but thats on mobile now shrink pc screen down from a corner mine stays witin chat at on point yours hits the edge of chat.
[ Post made via Android ]
yours on funny size screen
77.png
mine will stay 40 or 60px away from chat edge on any screen size.
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
[phpBB Debug] PHP Warning : in file [ROOT]/vendor/twig/twig/src/Template.php on line 359 : Array to string conversion
Array
tamarin
Users
Status:
Offline
User theme: Dark
Posts: 72 Joined: Mar 15th, '15, 00:07
Post
by tamarin » Feb 8th, '16, 21:03
TWEagle wrote: Jan 28th, '16, 09:50
this doesn't work in combination with the advanced BB-Code extension??
I have the same problem.
Can you help us please?
Thx
[phpBB Debug] PHP Warning : in file [ROOT]/vendor/twig/twig/src/Template.php on line 359 : Array to string conversion
Array
Sprinklestar
Users
Status:
Offline
User theme: Dark
Posts: 32 Joined: Jan 27th, '16, 07:03
Post
by Sprinklestar » Feb 11th, '16, 21:19
Can this also be made working in
http://www.canidev.com/index.php chat box
the
works allready just i have to type it in manually
[phpBB Debug] PHP Warning : in file [ROOT]/vendor/twig/twig/src/Template.php on line 359 : Array to string conversion
Array
martin
Admin
Status:
Offline
User theme: Dark
Posts: 5106 Joined: Apr 6th, '14, 14:12
Post
by martin » Feb 11th, '16, 21:22
If the chat has an event in the right place the note ext will work every where.
[phpBB Debug] PHP Warning : in file [ROOT]/vendor/twig/twig/src/Template.php on line 359 : Array to string conversion
Array
Sprinklestar
Users
Status:
Offline
User theme: Dark
Posts: 32 Joined: Jan 27th, '16, 07:03
Post
by Sprinklestar » Feb 11th, '16, 22:20
What event can i search for or add