Difference between revisions of "Version 6 Template Migration Guide"
Line 1: | Line 1: | ||
− | + | WHMCS 6 includes an internal upgrade from Smarty 2 to Smarty 3.1. As a result, you will need to update any custom templates that use Smarty 2 features that are not available in Smarty 3. | |
− | + | ||
− | WHMCS | + | == {literal} Changes == |
− | + | ||
− | + | Smarty 3 changes the way in which templates interpret whitespace, removing the need for <tt>{literal}</tt> tags around <tt>{</tt> and <tt>}</tt> characters in CSS and JavaScript blocks. | |
− | + | ||
− | =={literal} Changes== | + | For example: |
− | + | ||
− | Smarty 3 | ||
− | |||
− | For example | ||
− | |||
<syntaxhighlight lang="smarty"> | <syntaxhighlight lang="smarty"> | ||
<script type="text/javascript"> | <script type="text/javascript"> | ||
− | function example() | + | function example() |
{literal}{{/literal} | {literal}{{/literal} | ||
alert('example'); | alert('example'); | ||
Line 19: | Line 15: | ||
</script> | </script> | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | + | ||
− | Converts to: | + | Converts to: |
− | + | ||
<syntaxhighlight lang="smarty"> | <syntaxhighlight lang="smarty"> | ||
<script type="text/javascript"> | <script type="text/javascript"> | ||
− | function example() | + | function example() |
{ | { | ||
alert('example'); | alert('example'); | ||
Line 30: | Line 26: | ||
</script> | </script> | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | + | ||
− | =={php} Block Syntax== | + | == {php} Block Syntax == |
− | + | ||
− | <div class="docs-alert- | + | <div class="docs-alert-warning"> |
− | + | We deprecated legacy Smarty tags in WHMCS 6.0 and will remove support entirely in WHMCS 9.0. You '''must''' remove these tags from your custom themes and templates. For more information, see [[Eliminating Legacy Smarty Tags]]. | |
− | + | </div> | |
− | + | ||
− | + | In most cases, you can update a template's <tt>{php}</tt> block to a hook file. Hooks perform custom actions at specific points in WHMCS's page generation routines. | |
− | + | ||
− | + | For example, you can reference existing template variables or define new template variables in a PHP file in the <tt>includes/hooks</tt> directory. Inspect and assign variables using the <tt>ClientAreaPage</tt> hook: | |
− | + | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | For | ||
− | |||
<syntaxhighlight lang="php"> | <syntaxhighlight lang="php"> | ||
add_hook('ClientAreaPage', 1, function($templateVariables) | add_hook('ClientAreaPage', 1, function($templateVariables) | ||
Line 119: | Line 44: | ||
doThings(); | doThings(); | ||
} | } | ||
− | + | ||
// Define new variables to send to the template. | // Define new variables to send to the template. | ||
return array( | return array( | ||
Line 126: | Line 51: | ||
}); | }); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | + | ||
− | + | Then, reference the newly-assigned variable in the template: | |
− | + | ||
<syntaxhighlight lang="smarty"> | <syntaxhighlight lang="smarty"> | ||
<p>My custom variable value is: {$myCustomVariable}.</p> | <p>My custom variable value is: {$myCustomVariable}.</p> | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | + | ||
− | =The $client Object= | + | For more information on using hooks in templates, see [[Templates and Custom PHP Logic]]. |
− | + | ||
− | All | + | == The $client Object == |
− | + | ||
+ | All Client Area templates have a <tt>$client</tt> variable that represents the authenticated client. <tt>$client</tt> is either a <tt>WHMCS\Client\User</tt> object or ''null'' if no client is authenticated. | ||
+ | |||
<syntaxhighlight lang="smarty"> | <syntaxhighlight lang="smarty"> | ||
{if $client === null} | {if $client === null} | ||
Line 144: | Line 71: | ||
{/if} | {/if} | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | |||
+ | For more information, see [[Using Models]]. |
Latest revision as of 21:49, 26 January 2023
WHMCS 6 includes an internal upgrade from Smarty 2 to Smarty 3.1. As a result, you will need to update any custom templates that use Smarty 2 features that are not available in Smarty 3.
{literal} Changes
Smarty 3 changes the way in which templates interpret whitespace, removing the need for {literal} tags around { and } characters in CSS and JavaScript blocks.
For example:
<script type="text/javascript">
function example()
{literal}{{/literal}
alert('example');
{literal}}{/literal}
</script>
Converts to:
<script type="text/javascript">
function example()
{
alert('example');
}
</script>
{php} Block Syntax
We deprecated legacy Smarty tags in WHMCS 6.0 and will remove support entirely in WHMCS 9.0. You must remove these tags from your custom themes and templates. For more information, see Eliminating Legacy Smarty Tags.
In most cases, you can update a template's {php} block to a hook file. Hooks perform custom actions at specific points in WHMCS's page generation routines.
For example, you can reference existing template variables or define new template variables in a PHP file in the includes/hooks directory. Inspect and assign variables using the ClientAreaPage hook:
add_hook('ClientAreaPage', 1, function($templateVariables)
{
// Look for an existing template variable.
foreach ($templateVariables as $name => $variable) {
doThings();
}
// Define new variables to send to the template.
return array(
'myCustomVariable' => 'myCustomValue',
);
});
Then, reference the newly-assigned variable in the template:
<p>My custom variable value is: {$myCustomVariable}.</p>
For more information on using hooks in templates, see Templates and Custom PHP Logic.
The $client Object
All Client Area templates have a $client variable that represents the authenticated client. $client is either a WHMCS\Client\User object or null if no client is authenticated.
{if $client === null}
<p>Nobody is logged in. :(</p>
{else}
<p>Hello, {$client->firstName} {$client->lastName}!</p>
{/if}
For more information, see Using Models.