mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-27 01:39:22 +02:00
Add HOOK_ACCOUNT_CREATE_CHARACTER_* hooks
This commit is contained in:
parent
32ae4dde20
commit
45dda5e834
@ -54,6 +54,11 @@ define('HOOK_ACCOUNT_LOGIN_AFTER_REMEMBER_ME', ++$i);
|
|||||||
define('HOOK_ACCOUNT_LOGIN_AFTER_PAGE', ++$i);
|
define('HOOK_ACCOUNT_LOGIN_AFTER_PAGE', ++$i);
|
||||||
define('HOOK_ACCOUNT_LOGIN_POST', ++$i);
|
define('HOOK_ACCOUNT_LOGIN_POST', ++$i);
|
||||||
define('HOOK_ACCOUNT_CREATE_CHARACTER_AFTER', ++$i);
|
define('HOOK_ACCOUNT_CREATE_CHARACTER_AFTER', ++$i);
|
||||||
|
define('HOOK_ACCOUNT_CREATE_CHARACTER_BEFORE_FIRST_TABLE', ++$i);
|
||||||
|
define('HOOK_ACCOUNT_CREATE_CHARACTER_BEFORE_VOCATIONS', ++$i);
|
||||||
|
define('HOOK_ACCOUNT_CREATE_CHARACTER_BEFORE_TOWNS', ++$i);
|
||||||
|
define('HOOK_ACCOUNT_CREATE_CHARACTER_AFTER_TOWNS', ++$i);
|
||||||
|
define('HOOK_ACCOUNT_CREATE_CHARACTER_AFTER_SECOND_TABLE', ++$i);
|
||||||
define('HOOK_ADMIN_HEAD_END', ++$i);
|
define('HOOK_ADMIN_HEAD_END', ++$i);
|
||||||
define('HOOK_ADMIN_HEAD_START', ++$i);
|
define('HOOK_ADMIN_HEAD_START', ++$i);
|
||||||
define('HOOK_ADMIN_BODY_START', ++$i);
|
define('HOOK_ADMIN_BODY_START', ++$i);
|
||||||
|
@ -23,6 +23,9 @@ In any case the name must not violate the naming conventions stated in the <a hr
|
|||||||
</div>
|
</div>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
|
|
||||||
|
{{ hook('HOOK_ACCOUNT_CREATE_CHARACTER_BEFORE_FIRST_TABLE') }}
|
||||||
|
|
||||||
<div class="InnerTableContainer">
|
<div class="InnerTableContainer">
|
||||||
<table style="width:100%;">
|
<table style="width:100%;">
|
||||||
<tr>
|
<tr>
|
||||||
@ -66,6 +69,9 @@ In any case the name must not violate the naming conventions stated in the <a hr
|
|||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{{ hook('HOOK_ACCOUNT_CREATE_CHARACTER_BEFORE_VOCATION') }}
|
||||||
|
|
||||||
<div class="InnerTableContainer">
|
<div class="InnerTableContainer">
|
||||||
<table style="width: 100%;">
|
<table style="width: 100%;">
|
||||||
<tr>
|
<tr>
|
||||||
@ -90,6 +96,9 @@ In any case the name must not violate the naming conventions stated in the <a hr
|
|||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{{ hook('HOOK_ACCOUNT_CREATE_CHARACTER_BEFORE_TOWNS') }}
|
||||||
|
|
||||||
{% if config.character_towns|length > 1 %}
|
{% if config.character_towns|length > 1 %}
|
||||||
<td>
|
<td>
|
||||||
<table class="TableContent" width="100%">
|
<table class="TableContent" width="100%">
|
||||||
@ -112,9 +121,15 @@ In any case the name must not violate the naming conventions stated in the <a hr
|
|||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{{ hook('HOOK_ACCOUNT_CREATE_CHARACTER_AFTER_TOWNS') }}
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{{ hook('HOOK_ACCOUNT_CREATE_CHARACTER_AFTER_SECOND_TABLE') }}
|
||||||
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user