Search found 1063 matches

by imkingdavid
Sat Feb 22, 2014 9:22 pm
Forum: [3.x] Discussion
Topic: Inject code into admin template
Replies: 2
Views: 6125

Re: Inject code into admin template

You can use template events to inject code, including INCLUDECSS and INCLUDEJS calls. Check this page and scroll to "Added ACP Template Events". Note that the list may be out of date, so check in the template file where you need an event and do a search for <!-- EVENT to see which events a...
by imkingdavid
Sat Feb 22, 2014 9:10 pm
Forum: General Development Discussion
Topic: phpbb 4 framework
Replies: 7
Views: 16374

Re: phpbb 4 framework

From what I understand, phpbb might be gradually re-written based on Symfony2 framework in the future. Actually, that's exactly what is happening for 3.1. We have integrated the Routing, Dependency Injection, HttpKernel, and several other components already, and we are looking into the Forms compon...
by imkingdavid
Mon Jan 13, 2014 8:49 pm
Forum: [3.x][Archive] RFCs
Topic: Stop disabling super globals
Replies: 33
Views: 106249

Re: Stop disabling super globals

sajaki wrote:hi,
does this mean that in 3.1, this isset ( $_POST ['templatevariable'] won't work because there's no $_POST array anymore ?
I believe isset() is allowed, but in 3.1 is it strongly recommended that you just use $request->is_set_post('templatevariable');
by imkingdavid
Fri Jan 10, 2014 9:49 pm
Forum: [3.x][Archive] RFCs
Topic: First post on top on the topic.
Replies: 14
Views: 22945

Re: First post on top.

I think if this was implemented, it should be more of a per-topic setting, particularly going with the use-cases presented in the OP (i.e. an event or informational topic). Then again, I'm sure someone might want to have it for all topics. With that in mind, I think this should be left for extension...
by imkingdavid
Tue Jan 07, 2014 6:50 pm
Forum: [3.x] Discussion
Topic: Where To Install Extensions
Replies: 2
Views: 5270

Re: Where To Install Extensions

The phpBB repository does not include an ext/ directory, but when the official package is released, the directory will be included. For now, as t_backoff said, you'll need to create it yourself.
by imkingdavid
Tue Jan 07, 2014 6:49 pm
Forum: [3.x][Archive] RFCs
Topic: [RFC] stop distributing worthless CAPTCHAS in 3.1
Replies: 98
Views: 169597

Re: [RFC] stop distributing worthless CAPTCHAS in 3.1

Also, there's the issue of requiring JavaScript. We try to make it so that a default installation does not require JavaScript in order to function properly; sure it will not be as snappy or smooth, but it should still work. If we include, for instance, the Sortables CAPTCHA, no one that has disabled...
by imkingdavid
Tue Jan 07, 2014 6:03 pm
Forum: General Development Discussion
Topic: phpbb 4 framework
Replies: 7
Views: 16374

Re: phpbb 4 framework

With regards to phpBB 4, please see the following blog post: https://blog.phpbb.com/2013/10/15/phpbb-3-1-alpha1-preview-release/ Specifically, I am quoting the relevant part: Behind the scenes, we have been making major changes to phpBB’s architecture. Over the last few years you may have seen us di...
by imkingdavid
Fri Jan 03, 2014 5:43 am
Forum: [3.x][Archive] RFCs
Topic: Permission Setting to show IP address to Admins only
Replies: 21
Views: 40127

Re: Permission Setting to show IP address to Admins only

Adding permissions in extensions requires a couple of lines in a DB migration, as well as a language entry. So it wouldn't be difficult at all. For implementation of the permission at a functional level would require an event in the appropriate place(s).
by imkingdavid
Thu Jan 02, 2014 3:04 am
Forum: [3.x] Discussion
Topic: When new apha or beta will be relised ?
Replies: 1
Views: 5162

Re: When new apha or beta will be relised ?

The next release will occur when the Blocker issues have been fixed. There is no set release date.
by imkingdavid
Tue Dec 31, 2013 12:36 pm
Forum: [3.x][Archive] RFCs
Topic: [RFC] stop distributing worthless CAPTCHAS in 3.1
Replies: 98
Views: 169597

Re: Remove broken captcha options...

It's not a bug, in the sense that the captcha is not working properly. For instance, a bug would be if typing the wrong letters would yield a positive result. Computers are able to perform character recognition, and are able to do so at a very high rate of speed. Most CAPTCHA plugins attempt to simp...