Search found 375 matches

by nicofuma
Mon Aug 20, 2018 11:33 am
Forum: Extension Requests
Topic: [Solved] How make DocBook like phpBB.com?
Replies: 6
Views: 1101

Re: [Request] How make DocBook like phpBB.com?

I think the most important part is in https://github.com/phpbb/documentation/tree/3.1.x/documentation there is also stuff (I think) in the repository of the legacy part of the website which is not only ugly but also almost impossible to understand and maintain. But to be honest I don't really know h...
by nicofuma
Thu Feb 15, 2018 7:10 pm
Forum: Extension Writers Discussion
Topic: Dynamic routing
Replies: 6
Views: 1229

Re: Dynamic routing

Here is a proper explanation in Symfony's documentation :) https://symfony.com/doc/2.8/routing/cus ... oader.html
by nicofuma
Tue Jan 30, 2018 6:49 pm
Forum: Extension Writers Discussion
Topic: Permissions Ordering
Replies: 1
Views: 937

Re: Permissions Ordering

I think nobody will be able to tell you why it is this way as this comment has been written 8 years ago (i.e between php 3.0 and php 4.0 release), that's pretty old ^^ About the performance issue, it's the same thing: it was an issue 8 years ago but PHP changed a lot since then and it's not an issue...
by nicofuma
Sun Jan 21, 2018 10:33 am
Forum: Extension Writers Discussion
Topic: Change route without changing .yml? Change RouteCollection?
Replies: 2
Views: 736

Re: Change route without changing .yml? Change RouteCollection?

you can redefine the route by using the same name in your route: extensions are loaded after the core. But it may be difficult to pass validation
Paul wrote:
by nicofuma
Sun Jan 21, 2018 10:29 am
Forum: Extension Writers Discussion
Topic: Parse/render twig template in php
Replies: 10
Views: 2743

Re: Parse/render twig template in php

Actually phpBB template engine IS Twig with an overlay for BC and historic reasons. So you can just use the regular template service and you can assign arrays and objects like with Twig (unlike the 3.0 template engine)
by nicofuma
Wed Sep 20, 2017 7:59 am
Forum: phpBB Ideas
Topic: Installing Extensions/Styles through ACP
Replies: 30
Views: 18802

Re: Installing Extensions/Styles through ACP

Langages packs and styles are also planned but not right away; We want to test and improve the solution with the extensions first.
by nicofuma
Sat Sep 09, 2017 2:57 pm
Forum: phpBB Ideas
Topic: Installing Extensions/Styles through ACP
Replies: 30
Views: 18802

Re: Installing Extensions/Styles through ACP

It has actually been merged. We are still improving it and fixing some bug but the feature should be released with phpBB 3.3.0.
by nicofuma
Wed May 10, 2017 1:12 pm
Forum: Extension Writers Discussion
Topic: Class loader class
Replies: 19
Views: 2603

Re: Class loader class

PR yes please. This is something that has nothing to do as an extension.
by nicofuma
Tue May 09, 2017 3:25 pm
Forum: Extension Writers Discussion
Topic: Class loader class
Replies: 19
Views: 2603

Re: Class loader class

The class loader is registered in the container for some obscure reasons but it shouldn't. The has to be the first thing created and that's a requirement you cannot change. About what you are trying to achieve, the best thing is to inspects the autoloaders chain and wrap them (give Symfony's Debug a...
by nicofuma
Sun Feb 05, 2017 5:00 pm
Forum: Extension Writers Discussion
Topic: How to create a services.yml file dynamically
Replies: 7
Views: 895

Re: How to create a services.yml file dynamically

I see. For me it is more an issue of autogroup because there is no way you can generate services on the fly and add the to the service collection.
by nicofuma
Sun Feb 05, 2017 4:15 pm
Forum: Extension Writers Discussion
Topic: How to create a services.yml file dynamically
Replies: 7
Views: 895

Re: How to create a services.yml file dynamically

Actually what you are trying to achieve is just impossible. The container is compiled once per cache refresh and after that you cannot alter it (and or remove any service definition). It is possible to manipulate the container builder during the compilation phase but you don't have access to the dat...
by nicofuma
Sun Jan 22, 2017 2:04 pm
Forum: Extension Writers Discussion
Topic: How to specify two phpbb requirements
Replies: 12
Views: 1111

Re: How to specify two phpbb requirements

I made a mistake indeed, "phpbb/phpbb": "~3.1.10|~3.2.0" is the best one (not sure about "phpbb/phpbb": ">=3.1.11,<3.2.0|>=3.2.1,<3.3.0", it should work I think, but...)
by nicofuma
Fri Jan 20, 2017 8:32 pm
Forum: phpBB Discussion
Topic: V 3.2.0 accessibility: A big thanks
Replies: 20
Views: 5733

Re: V 3.2.0 accessibility: A big thanks

You can still upload it somewhere and give me a link (together with a link to your forum if it's public so I can see what it does^^), it can be a great help and source of inspiration if you don't have the time or motivation to contribute them directly to the core.
by nicofuma
Fri Jan 20, 2017 7:35 am
Forum: Extension Writers Discussion
Topic: How to specify two phpbb requirements
Replies: 12
Views: 1111

Re: How to specify two phpbb requirements

You can specify both version in the soft requirement this way: "phpbb/phpbb": "~3.1.10|~3.2.0" or "phpbb/phpbb": ">=3.1.10|>=3.2.0"
by nicofuma
Thu Jan 19, 2017 8:03 am
Forum: phpBB Discussion
Topic: V 3.2.0 accessibility: A big thanks
Replies: 20
Views: 5733

Re: V 3.2.0 accessibility: A big thanks

By the way, if you want to contribute your modifications directly in the core they are all welcome

Go to advanced search