1.) I made two “XMLlinks” (the news detail template links) App_XMLread and App_XMLwrite
2.) Tried to place
Code: Select all
{capture assign='junk'} {cms_module module='FrontEndUsers'} {/capture}
<?xml version="1.0" encoding="utf-8"?>
It seems to me that if i use the code below i'd get the listing of all the Group Properties
Code: Select all
{foreach from=$controls item=control}
<tr>
<td align="left">{$control->hidden}
{if $control->color != ''}
<font color="{$control->color}">{$control->prompt}{$control->marker}</font>
{else}
{$control->prompt}{$control->marker}
{/if}
</td>
<td align="left">{$control->control}</td>
</tr>
{/foreach}
I would think that if I was to stick in App_XMLwrite this code:
(I know that not xml formatted code

Code: Select all
{capture assign='junk'} {cms_module module='FrontEndUsers'} {/capture}
<?xml version="1.0" encoding="utf-8"?>
{$startform}
{if $controlcount > 0}
<center>
<table width="75%">
{foreach from=$controls item=control}
<tr>
<td>{$control->hidden}<font color="{$control->color}">{$control->prompt}{$control->marker}</font></td>
<td>
{if isset($control->image)}{$control->image}<br/>{/if}
{$control->control}{$control->addtext}
{if $control->required != true}
{if isset($control->control2)}{$control->prompt2} {$control->control2}<br/>{/if}
{/if}
</td>
</tr>
{/foreach}
</table>
</center>
{/if}
{$hidden}{$hidden2}{$submit}{$cancel}
{$endform}
