Difference between revisions of "Adtool Templates"

From TMM Wiki
Jump to navigationJump to search
(Created page with 'In the adtools admin, you can edit each type to control the template that will be used to display it. You can also override this setting in the display_adtools or nats_display_a…')
 
m
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
In the adtools admin, you can edit each type to control the template that will be used to display it.  You can also override this setting in the display_adtools or nats_display_adtools smarty function call
+
{{ NATS4 Manual
 +
| show_adtools_admin_section = true
 +
}}
  
Pass in tpl=xxx to set the base template name.
+
[[NATS4]] offers the ability to edit each [[Ct#Adtool|adtool]] type to control the [[Ct#Template|template]] that will be used to display it. This can be done through the [[NATS4 Adtools Admin|Adtools Admin]].
Pass in view=yyy to set the view.  This will append _cust_yyy to the base template name for custom adtool types, and will append _yyy to the base template name for built in adtool types.
 
  
Passing in no tpl will result in using the default template set for the type
+
You can also override this setting in the ''display_adtools'' or ''nats_display_adtools'' [[Smarty]] function call if you wish.
Passing in no view will result in using _min
+
 
 +
The following explains how to control the [[Ct#Adtool|adtool]] [[Ct#Template|templates]]:
 +
 
 +
* Pass in ''tpl=xx'' to set the base template name.
 +
* Pass in ''view=yyy'' to set the view.
 +
** This will append ''_cust_yyy'' to the base [[Ct#Template|template]] name for custom adtool types, and will append ''_yyy'' to the base [[Ct#Template|template]] name for adtool types that are already built in to [[NATS4]].
 +
 
 +
Passing in no ''tpl'' wil result in [[NATS]] using the default [[Ct#Template|template]] set for the adtool type, while passing in no ''view'' will result in [[NATS]] using ''_min'' for the adtool type.
  
 
== Examples ==
 
== Examples ==
In this example the default template for this adtool type is content
+
 
 +
In the following example, the default [[Ct#Template|template]] for this adtool type is "content":
 +
 
 
=== Custom Adtool Type ===
 
=== Custom Adtool Type ===
  
 
{display_adtools ... tpl=my_adtool_type}
 
{display_adtools ... tpl=my_adtool_type}
 
Will display the template:  my_adtool_type_min
 
Will display the template:  my_adtool_type_min
 
  
 
{display_adtools ... tpl=my_adtool_type view=max}
 
{display_adtools ... tpl=my_adtool_type view=max}
Line 37: Line 46:
 
{display_adtools ... view=max}
 
{display_adtools ... view=max}
 
Will display the template:  function_display_adtools_max
 
Will display the template:  function_display_adtools_max
 +
 +
[[Category:NATS4 Adtools Admin]]

Latest revision as of 12:22, 19 May 2011

NATS 4
Members Admin
The Members Admin
View Member Details
Add Member
MySQL Auth
Mod Authn DB
Multisite Access
Member Logging
Member Password Retrieval
OpenID Connect
Mod Auth OpenIDC
ID Numbers
Adtools Admin
The Adtools Admin
Duplicating Adtool Types
Add New Adtools
Add New Adtool Type
Bulk Import Adtools
Downloadable Content Adtool Type
Get Hosted Galleries
Adtool Templates
Content of the Day
Linkcodes and Tools Admin
Setting Rules

NATS4 offers the ability to edit each adtool type to control the template that will be used to display it. This can be done through the Adtools Admin.

You can also override this setting in the display_adtools or nats_display_adtools Smarty function call if you wish.

The following explains how to control the adtool templates:

  • Pass in tpl=xx to set the base template name.
  • Pass in view=yyy to set the view.
    • This will append _cust_yyy to the base template name for custom adtool types, and will append _yyy to the base template name for adtool types that are already built in to NATS4.

Passing in no tpl wil result in NATS using the default template set for the adtool type, while passing in no view will result in NATS using _min for the adtool type.

Examples

In the following example, the default template for this adtool type is "content":

Custom Adtool Type

{display_adtools ... tpl=my_adtool_type} Will display the template: my_adtool_type_min

{display_adtools ... tpl=my_adtool_type view=max} Will display the template: my_adtool_type_cust_max

{display_adtools ...} Will display the template: function_display_adtools_content_min

{display_adtools ... view=max} Will display the template: function_display_adtools_cust_max

Built in Adtool Types

{display_adtools ... tpl=my_adtool_type} Will display the template: my_adtool_type_min

{display_adtools ... tpl=my_adtool_type view=max} Will display the template: my_adtool_type_max

{display_adtools ...} Will display the template: function_display_adtools_content_min

{display_adtools ... view=max} Will display the template: function_display_adtools_max