A QCodo powered CMS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 lines
763 B

<% foreach ($objTable->ManyToManyReferenceArray as $objManyToManyReference) { %><%
// Use the "control_update_manytomany_reference" subtemplate to generate the code
// required to create/setup the control.
$mixArguments = array(
'objManyToManyReference' => $objManyToManyReference,
'strObjectName' => $objCodeGen->VariableNameFromTable($objTable->Name),
'strClassName' => $objTable->ClassName,
'strControlId' => $objCodeGen->FormControlVariableNameForManyToManyReference($objManyToManyReference)
);
// Get the subtemplate and evaluate
return $objCodeGen->EvaluateSubTemplate('control_update_manytomany_reference.tpl', $strModuleName, $mixArguments) . "\n";
%><% } %>