!!! warning{width="16" height="16"} This page has been copied directly from the book. It need updating or deleting.
</div>
!!! warning
This page has been copied directly from the book. It need updating or deleting.
CiviCRM uses page template files to display all the pages. This makes it
possible for a person to customize any CiviCRM screen to suit a special
...
...
@@ -38,80 +34,78 @@ JavaScript and an Ajax utility, JQuery.
CiviCRM uses a page template engine called Smarty. This documentation
is focused on how Smarty is used within the CiviCRM environment. Every
Smarty element is enclosed between braces like these: "{}". All the
Smarty element is enclosed between braces like these: `{}`. All the
other text is going to be displayed directly as HTML in the rendered
page.
Each page template is stored in a file with the extension *.tpl*. The
Each page template is stored in a file with the extension `.tpl`. The
PHP code assigns variables for content that needs to be displayed, and
then lets the template engine take care of presenting it.
The Smarty template engine always does this process :
1. Load the contents of a *.tpl* file.
2. Scan the *.tpl* file for placeholder elements.
1. Load the contents of a `.tpl` file.
2. Scan the `.tpl` file for placeholder elements.
3. Replace each placeholder element with the corresponding
variable value.
4. Send the resulting HTML to the web browser.
These are the most commonly used Smarty template elements:
- {$Name}: To display the value of a variable named "Name"
- {$row.Name}: To display the value of the attribute Name in the
-`{$Name}`: To display the value of a variable named "Name"
-`{$row.Name}`: To display the value of the attribute Name in the
object Row
- {foreach from=$rows item=row}...{/foreach}: To loop though all the
-`{foreach from=$rows item=row}...{/foreach}`: To loop though all the
items of the Rows array
- {literal} JavaScript code{/literal} to indicate to Smarty the "{}"
-`{literal} JavaScript code{/literal}` to indicate to Smarty the `{}`
aren't smarty elements but JavaScript code, enclose JavaScript
between {literal}
-<spanclass="Apple-style-span">{ldelim} and {rdelim} are alternative
ways to generate { and }. This is often useful if you have a simple
between `{literal}`
-`{ldelim}` and `{rdelim}` are alternative
ways to generate `{` and `}`. This is often useful if you have a simple
JavaScript code that needs a lot of values from Smarty
variables </span>
- {include file="CRM/path/to/template.tpl" param1=xxx}: includes the
result of the *template.tpl*. Some included files expect to have
extra param (e.g., *param1*).
variables
-`{include file="CRM/path/to/template.tpl" param1=xxx}`: includes the
result of the `template.tpl`. Some included files expect to have
extra param (e.g., `param1`).
Please read the Smarty documentation for more information.
**Tip**: To see what variables have been assigned to the template,
enable debug (Administer -> Configure -> Global Settings ->
Debugging) and on any URL, add **&smartyDebug=1**. It opens a new
browser window listing all the variables and values.
!!! tip
To see what variables have been assigned to the template, enable debug (Administer > Configure > Global Settings > Debugging) and on any URL, add `&smartyDebug=1`. It opens a new browser window listing all the variables and values.
CiviCRM introduces some extra features to Smarty:
- {ts}Any text{/ts}: It will display the translated text (if you don't
-`{ts}Any text{/ts}`: It will display the translated text (if you don't
2. Update the Custom Template field in the Global Settings directories
to */var/www/civi.custom/acme/templates.* You can use any directory.
to `/var/www/civi.custom/acme/templates.` You can use any directory.
We found it easier to put the custom templates under
*/var/www/civi.custom/yourorganisation*.
3. copy *templates/Contact/Page/View/Summary.tpl* from your CiviCRM
install to */var/www/civi.custom/acme*
`/var/www/civi.custom/yourorganisation`.
3. copy `templates/Contact/Page/View/Summary.tpl` from your CiviCRM
install to `/var/www/civi.custom/acme`
**Tip**: Say you want to modify the template for a specific profile
form, or a specific event. Instead of copying the Form template to its
default place (*templates/CRM/Profile/Form/Edit.tpl*), you can create a
subfolder with the ID of the profile and put the template file you want
to change in the subfolder (*templates/CRM/Profile/Form/42/Edit.tpl* to
modify only the form for ProfileID 42).
!!! tip
Say you want to modify the template for a specific profile form, or a specific event. Instead of copying the Form template to its default place (`templates/CRM/Profile/Form/Edit.tpl`), you can create a subfolder with the ID of the profile and put the template file you want to change in the subfolder (`templates/CRM/Profile/Form/42/Edit.tpl` to modify only the form for ProfileID 42).
You might want to modify a template that isn't directly the page you
load, but added later via Ajax. For instance, perhaps you want to change
...
...
@@ -144,10 +134,9 @@ your web browser. If using Mozilla Firefox, the Firebug plug-in is
indispensable. Open the Firebug console (or equivalent in your
browser) and click the tab. You will see what URL has been loaded for