Search found 1063 matches

by imkingdavid
Sat Dec 21, 2013 7:35 pm
Forum: [3.x] Discussion
Topic: Requesting events
Replies: 4
Views: 6790

Re: Requesting events

Often times, you don't necessarily need an event in a certain place to do what you want, so try to see if already existent events can be utilized. If none exists, request one. It would be better to cater to the whole extension author community, rather than add a bunch of events that will only be use...
by imkingdavid
Sat Dec 21, 2013 7:33 pm
Forum: [3.x][Archive] RFCs
Topic: Let front controllers access "all" for template files
Replies: 3
Views: 8430

Re: [RFC] Let front controllers access "all" for template files

Regarding your last paragraph, yes it should pull from prosilver as long as it is a parent style of the 3rd party style. The vast majority of 3rd party styles should inherit from either subsilver2 or prosilver, and It is not the extension author's responsibility to provide template files for those t...
by imkingdavid
Sun Dec 08, 2013 7:43 pm
Forum: [3.1/Ascraeus] Merged Event Requests
Topic: [PHP] core.submit_post_end (was: core.submit_post_modify_return_url)
Replies: 2
Views: 11246

Re: [PHP] submit_post_modify_return_url

NOTE: This was renamed to core.submit_post_end.
by imkingdavid
Sun Dec 08, 2013 7:26 pm
Forum: [3.x] Event Requests
Topic: [Template] topiclist_topic_title_before/after/prepend/append
Replies: 4
Views: 14583

Re: [Template] topiclist_topic_title_before/after/prepend/append/alter

Pull Request

Ticket

Note that the other events suggested in this topic have not been added in this PR. They should be added in a separate ticket/PR.
by imkingdavid
Sun Dec 01, 2013 10:53 pm
Forum: [3.x] Discussion
Topic: [3.1a3] Extension problems
Replies: 23
Views: 27065

Re: [3.1a3] Extension problems

That is because the Dependency Injection Container is cached on subsequent page loads to reduce load time. Enable DEBUG in your config.php file to make it stop caching it, so you don't have to keep enabling/disabling your extension or manually purging the cache.
by imkingdavid
Sun Dec 01, 2013 3:22 am
Forum: [3.1/Ascraeus] Merged Event Requests
Topic: [PHP] core.submit_post_end (was: core.submit_post_modify_return_url)
Replies: 2
Views: 11246

[PHP] core.submit_post_end (was: core.submit_post_modify_return_url)

Identifer: core.submit_post_modify_return_url Location: functions_posting.php directly before the return statement in submit_post() Parameters: $data - array containing post data $url - The redirect URL used on the posting success page to return to the post Explanation: For my topic prefixes extens...
by imkingdavid
Sat Nov 30, 2013 5:57 am
Forum: [3.x] Event Requests
Topic: [Template] posting_layout_topic_title_before/after/append/prepend
Replies: 1
Views: 8688

[Template] posting_layout_topic_title_before/after/append/prepend

In viewtopic.php there's an event that can be used to add something before a topic title. I propose adding similar events. The *_before/after events are for adding outside of the <a></a> tags but on the same line, and the *_prepend/append are for adding inside the link tags. It would be on this line...
by imkingdavid
Fri Nov 29, 2013 6:29 pm
Forum: [3.x] Event Requests
Topic: [Template] topiclist_topic_title_before/after/prepend/append
Replies: 4
Views: 14583

Re: [Template] topiclist_topic_title_before/after/prepend/append/alter

Good point, I hadn't considered that. Thanks for pointing that out.