You can check it in the ext.php of your extension. It prevents your extension from installing. See https://github.com/canonknipser/viewexi ... hp#L26-L32 as an example
Ok, thanks. I'll do that.canonknipser wrote: Wed Sep 26, 2018 6:09 pmYou can check it in the ext.php of your extension. It prevents your extension from installing. See https://github.com/canonknipser/viewexi ... hp#L26-L32 as an example
Ok, I take into consideration making an extension for that.Alex Grigoras wrote: Fri Sep 28, 2018 6:44 am Good extension !
Try to make an update in the future to show on the first page the events that we created with the calendar:
Something like this: https://imgur.com/dJw66yc
I have the very same problem. When I try to edit first post of topic I can't enter date, because there are not fields for it.LapouX wrote: Sat Sep 22, 2018 7:57 pm
When I create a new topic I can enter a date.
When I modify the 1st post of this topic I can't modify the date or Add a date if none was enter at the creation.
This is actually an issue of the Calendar Mono Input extension so I will continue there.leschek wrote: Sun Oct 07, 2018 7:37 pmI have the very same problem. When I try to edit first post of topic I can't enter date, because there are not fields for it.LapouX wrote: Sat Sep 22, 2018 7:57 pm
When I create a new topic I can enter a date.
When I modify the 1st post of this topic I can't modify the date or Add a date if none was enter at the creation.
No, you really should not be doing it like this. You should add a composer dependency in your extension that needs it, and include it in your build. Starting with phpBB 3.3, when installing extensions from the acp will automatically install dependencies.martti wrote: Fri Jan 18, 2019 3:28 pm Version 0.4.0:
Removes again the fisharebest/ext-calendar dependency. Instead, when you can't have the PHP calendar functions (PHP compiled with --enable-calendar), install the PHP Ext Calendar extension.
These are multiple extensions forming together a flexible Calendar Set. They all need the PHP calendar functions. It will create a conflict when the same dependency is add multiple times. Besides, you only need this when you can't have PHP compiled with the calendar functions. If you can (normally no problem), you should this consider first.Paul wrote: Fri Jan 18, 2019 3:34 pmNo, you really should not be doing it like this. You should add a composer dependency in your extension that needs it, and include it in your build. Starting with phpBB 3.3, when installing extensions from the acp will automatically install dependencies.martti wrote: Fri Jan 18, 2019 3:28 pm Version 0.4.0:
Removes again the fisharebest/ext-calendar dependency. Instead, when you can't have the PHP calendar functions (PHP compiled with --enable-calendar), install the PHP Ext Calendar extension.
Adding a extra extension will only cause extra overhead.
Do you have references to your claims? Declaring the same function multiple times will result in aPaul wrote: Fri Jan 18, 2019 3:58 pm No, there should not be any conflict. You should simply have the required depended in your composer.json and it should work
Can not redeclare
fatal error imho.