';
global $adb;
global $theme;
$theme_path="themes/".$theme."/";
$image_path=$theme_path."images/";
require_once($theme_path.'layout_utils.php');
$fld_module = $_REQUEST["fld_module"];
//Retreiving the fields array
$xtpl=new XTemplate ('modules/Users/ListFldProfiles.html');
$sql = "select * from profile";
$profileListResult = $adb->query($sql);
$noofrows = $adb->num_rows($profileListResult);
$standCustFld = getStdOutput($profileListResult, $noofrows, $mod_strings, $fld_module);
//Standard PickList Fields
function getStdOutput($profileListResult, $noofrows, $mod_strings, $fld_module)
{
global $adb;
echo '
';
echo get_form_header("Profiles", "", false );
echo ' |
';
$standCustFld= '';
$standCustFld .= '';
//echo $standCustFld;
return $standCustFld;
}
$xtpl->assign("MOD", $mod_strings);
$xtpl->assign("FIELDPROFILES", $standCustFld);
$xtpl->parse("main");
$xtpl->out("main");
?>