# name_load_template()
name_load_template()
This should return an array with all the template tags for Open-Realty's template engine to parse. If you don't define your template tags for the add-on here they won't be parsed by the template system and properly displayed. The actual replacement of the tags that are defined here is done by the function name_run_template_user_fields.
An example of a valid function:
<?php
function name_load_template() {
$template_array = array('addon_name_link');
return $template_array;
}
?>