Search found 15 matches

by Hunchman801
Sun Oct 25, 2015 8:53 pm
Forum: [3.x] Discussion
Topic: Confirmation message in custom quicktool
Replies: 2
Views: 9314

Confirmation message in custom quicktool

After running a custom quicktool action you might want to display a confirmation message just like in the default ones: trigger_error($user->lang['USER_POSTS_MOVED'] . adm_back_link($this->u_action . '&u=' . $user_id)); However it seems that the module's u_action is not accessible from within th...
by Hunchman801
Thu Oct 22, 2015 10:06 pm
Forum: [3.x] Discussion
Topic: Better events for rank generation
Replies: 1
Views: 3649

Re: Better events for rank generation

Or, similar to the core.page_header event, have a get_user_rank_override parameter to let the function know that its default rank generation should be overridden?

Any thoughts?
by Hunchman801
Wed Sep 30, 2015 3:28 pm
Forum: [3.x] Discussion
Topic: BBCode nesting in 3.1
Replies: 0
Views: 18412

BBCode nesting in 3.1

Hi all, I understand this problem is solved in 3.2 with the use of s9e\TextFormatter, however this causes critical issues in 3.1 such as the ability to break the page layout with the following code: [quote][spoiler][/quote][/spoiler] (That works with any implementation of the spoiler tag you'll find...
by Hunchman801
Wed Sep 30, 2015 3:25 pm
Forum: [3.x] Discussion
Topic: Better events for rank generation
Replies: 1
Views: 3649

Better events for rank generation

Hi all, I'm using a dual ranklist (users can choose their rank alignement in their profile) and while it's a trivial change editing the core files, the event system does not seem to allow for an efficient way of achieving the same thing: forum/includes/functions_display.php, line 1546, replace: if (...
by Hunchman801
Wed Sep 30, 2015 11:26 am
Forum: [3.2/Rhea] Merged RFCs
Topic: [RFC] Integrate s9e\TextFormatter
Replies: 168
Views: 435690

Re: [RFC] Integrate s9e\TextFormatter

Great job, this really is a huge step forward. I understand this fixes custom BBCode nesting, such as: [spoiler][spoiler]text[/spoiler][/spoiler] But does it also prevent it from breaking the page layout, as can be done with the following: [quote][spoiler][/quote][/spoiler] In that case, which tag(s...