2009-04-06 17:05:03 +00:00
|
|
|
<?php
|
|
|
|
|
2009-04-16 16:34:13 +00:00
|
|
|
$path = PATH_DATA.'/graydon/method';
|
|
|
|
$fileName = strtolower('CompanyMatchIdentifiers-'.$pays);
|
|
|
|
|
2009-05-06 17:04:22 +00:00
|
|
|
/** Recherche des identifiants et mise en cache **/
|
2009-06-08 12:41:21 +00:00
|
|
|
$identifiers = getCompanyMatchIdentifiers($pays);
|
2009-06-10 16:14:11 +00:00
|
|
|
if(is_array($identifiers)){
|
2009-04-07 17:44:17 +00:00
|
|
|
$firephp->log($identifiers,'identifiers');
|
2009-04-16 16:34:13 +00:00
|
|
|
$count = 0;
|
2009-04-07 17:44:17 +00:00
|
|
|
foreach($identifiers as $identifier){
|
2009-04-06 17:05:03 +00:00
|
|
|
?>
|
2009-04-20 12:54:22 +00:00
|
|
|
<input type="hidden" name="method" value="identifier" />
|
2009-05-06 17:04:22 +00:00
|
|
|
<label><?php print $identifier->Description ?></label>
|
2009-04-20 12:54:22 +00:00
|
|
|
<input type="text" name="frmRecherche[Identifier]" value="" />
|
2009-04-16 16:34:13 +00:00
|
|
|
<?php
|
|
|
|
$count++;
|
|
|
|
}
|
2009-06-10 16:14:11 +00:00
|
|
|
}elseif($identifiers=='noidentifiers'){
|
|
|
|
print 'Pas d\identifiant disponible pour ce pays.';
|
|
|
|
}else{
|
|
|
|
print $identifiers;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-16 16:34:13 +00:00
|
|
|
?>
|