I recently came across the below topic which suggests that for extensions that create modules in UCP/MCP/ACP, the extension author needs to add something like 'auth' => 'ext_vendor/foobar' to their module info files so the modules don't show up when the extension is inactive.
https://www.phpbb.com ...
Search found 17 matches
- Sat Mar 22, 2014 9:08 am
- Forum: [3.x] Discussion
- Topic: Extensions New ACP Module Auth
- Replies: 2
- Views: 5366
- Tue Nov 19, 2013 4:49 am
- Forum: [3.1/Ascraeus] Merged Event Requests
- Topic: [Template] overall_header_content_before
- Replies: 7
- Views: 38667
- Tue Nov 19, 2013 3:53 am
- Forum: [3.1/Ascraeus] Merged Event Requests
- Topic: [Template] overall_header_content_before
- Replies: 7
- Views: 38667
[Template] overall_header_content_before
Identifier: overall_header_content_before and overall_footer_content_after
Prosilver Location (if applicable): In overall_header.html after line 182, i.e. after the last line, and overall_footer.html before line 1 i.e. before the first line respectively
Subsilver Location (if applicable): In ...
Prosilver Location (if applicable): In overall_header.html after line 182, i.e. after the last line, and overall_footer.html before line 1 i.e. before the first line respectively
Subsilver Location (if applicable): In ...
- Thu Feb 28, 2013 6:51 pm
- Forum: [3.1/Ascraeus] Merged RFCs
- Topic: [RFC] Migrations
- Replies: 122
- Views: 187982
Re: [RFC] Migrations
There is nothing more frustrating for a user than trying to install an extension and running into errors. So I think the module tool needs to be more forgiving.
Consider the following code to add 2 categories and one module from an extension:
public function update_data ()
{
return array(
// add ...
Consider the following code to add 2 categories and one module from an extension:
public function update_data ()
{
return array(
// add ...
- Mon Feb 25, 2013 4:12 am
- Forum: [3.1/Ascraeus] Merged RFCs
- Topic: [RFC] Migrations
- Replies: 122
- Views: 187982
Re: [RFC] Migrations
Ok thanks
- Mon Feb 25, 2013 3:47 am
- Forum: [3.1/Ascraeus] Merged RFCs
- Topic: [RFC] Migrations
- Replies: 122
- Views: 187982
Re: [RFC] Migrations
Does the module tool work for extensions currently?
Say I have an extension my/test with a module info file (test_info.php) that looks something like this:
class phpbb_ext_my_test_acp_test_info
{
function module()
{
return array(
'filename' => 'test_module',
'title' => 'ACP_TEST',
'version ...
Say I have an extension my/test with a module info file (test_info.php) that looks something like this:
class phpbb_ext_my_test_acp_test_info
{
function module()
{
return array(
'filename' => 'test_module',
'title' => 'ACP_TEST',
'version ...
- Sat Feb 16, 2013 1:42 am
- Forum: [3.1/Ascraeus] Merged RFCs
- Topic: [RFC|Merged] Template Events
- Replies: 32
- Views: 54898
Re: [RFC|Merged] Template Events
I may once again be looking at this the wrong way but I found something quite curious about template events. Say we have an extension with a template file ext/blitze/foo/styles/all/overall_footer_before.html which of course responds to the overall_footer_before event in the overall_footer.html file ...
- Wed Feb 13, 2013 5:41 pm
- Forum: [3.1/Ascraeus] Merged RFCs
- Topic: [RFC|Merged] Extensions
- Replies: 113
- Views: 284545
Re: [RFC|Merged] Extensions
Are there any plans to fix the relative path issue before 3.1 alpha?
- Sun Feb 10, 2013 10:00 pm
- Forum: [3.1/Ascraeus] Merged RFCs
- Topic: [RFC|Merged] Extensions
- Replies: 113
- Views: 284545
Re: [RFC|Merged] Extensions
Ok, I have put in this PR to automatically add permission language files from extensions
- Sun Feb 10, 2013 5:44 am
- Forum: [3.1/Ascraeus] Merged RFCs
- Topic: [RFC|Merged] Extensions
- Replies: 113
- Views: 284545
Re: [RFC|Merged] Extensions
I think that these are all things that need to be well thought out, cleaned up, and added to the documentation on how to create extensions for phpBB 3.1. Since core.user_setup runs on every page it probably isn't ideal, as this is only needed when setting permissions. Do we need a different event ...