Differences
This shows you the differences between the selected revision and the current version of the page.
templates:plugins 2008/08/26 09:36 | templates:plugins 2009/02/02 12:17 current | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Template Plugins ====== | ====== Template Plugins ====== | ||
- | 68 Classifieds comes with a variety of pre-built template functions that you can use throughout the script. The following sections help describe the different functions and how to call them. You can also visit our [[http://www.68classifieds.com/forums/forumdisplay.php?f=42|Module Release]] forum for others added by us and other forum members. | + | 68 Classifieds comes with a variety of pre-built template functions that you can use throughout the script. The following sections help describe the different functions and how to call them. You can also visit our [[http://www.68classifieds.com/forums/module-release/|Module Release]] forum for others added by us and other forum members. |
+ | If you would like to create your own plugin please visit the [[http://smarty.net/manual/en/plugins.php|Plugins]] section of the Smarty manual. | ||
+ | |||
+ | * [[plugins:get_extra_field | Get Extra Field]] | ||
+ | * [[plugins:parentcategories | Parent Categories]] | ||
* [[templates:plugins#total_listings | Total Listings]] | * [[templates:plugins#total_listings | Total Listings]] | ||
* [[templates:plugins#total_members | Total Members]] | * [[templates:plugins#total_members | Total Members]] | ||
- | * [[templates:plugins#featured_listings_vertical | Featured Listings Vertical]] | + | * [[plugins:featurelistingsvertical | Featured Listings Vertical]] |
* [[plugins:featurelistingshorizontal | Feature Listings Horizontal]] | * [[plugins:featurelistingshorizontal | Feature Listings Horizontal]] | ||
+ | * [[plugins:get_extra_field | Get Extra Field]] | ||
+ | * [[development:plugins:tutorial | Writing a Plugin]] | ||
===== Total Listings ===== | ===== Total Listings ===== | ||
Line 15: | Line 21: | ||
<code>{total_members}</code> | <code>{total_members}</code> | ||
- | ===== Featured Listings Vertical ===== | ||
- | Featured listings vertical calls a function and displays all your featured listings in a vertical table. | ||
- | |||
- | To call this function you would include the following code in any template file you want it to appear. | ||
- | <code>{feature_listings_vertical number=4 table_attr='width="100%"' td_attr='valign="middle" align="center"'} | ||
- | </code> | ||
- | |||
- | The code above calls a Smarty custom plugin that we have created. The file is located at includes/templates/plugins/function.feature_listings_vertical.php | ||
- | |||
- | Here is a list of available parameters: | ||
- | |||
- | = number : (integer) The max number of listings you want displayed. | ||
- | = table_attr : (string) Any table attributes you would like. For example: table_attr='width="100%"'. | ||
- | = tr_attr : (string) Any tr attributes you would like. | ||
- | = show_price : (string) Y or N. | ||
- | = trailpad : (string) A value to pad the trailing cells on last row with (if any) The default is a space or | ||
- | = vdir : (string) The direction of each column to be rendered. possible values: down (top-to-bottom), up (bottom-to-top) default is down. | ||
- | |||
- | For more information on the different parameters you can visit this [[http://smarty.php.net/manual/en/language.function.html.table.php|Smarty link]]. |
Have more questions? Visit our community forums.