Home
last modified time | relevance | path

Searched refs:insee (Results 1 – 4 of 4) sorted by last modified time

/plugin/schedule/syntax/
H A Ddisplay.php87 list ($insee, $lat, $lon, $addr) = explode ("|", $line);
89 if (!$insee || !$lon) {
90 if ($insee && $lat)
91 …$renderer->doc .= ' <li lat="'.$insee.'" lon="'.$lat.'">56000</li>'.NL; // XXX position par defa…
94 if ($insee && $lat && $lon)
96 ' <li lat="'.$lat.'" lon="'.$lon.'">'.$insee.'</li>'.NL;
102 … (isset ($scheduleInseeCities[$insee]) ? $scheduleInseeCities[$insee][0] : $insee).'<br/>'.
/plugin/schedule/lib/
H A DscheduleCitiesMap.js200 var insee = scheduleSelectedCity.attr ('insee');
205 line.push (insee);
240 data: { action: "list", insee: cityCode },
/plugin/schedule/
H A Dschedules.class.php104 foreach ($scheduleInseeCities as $insee => $cityDef)
105 $scheduleCitiesInsee [strtolower ($cityDef[0])] = $insee;
320 $insee = $scheduleCitiesInsee [strtolower ($city)];
321 $newFields [] = $insee ? $insee : $city;
322 if ($insee)
1560 $insee = $cities[$i];
1562 isset ($scheduleInseeCities [$insee]) ?
1563 $scheduleInseeCities [$insee][0] :
1564 $insee;
1565 ptln (' <li onclick="scheduleSelectCity (this)" insee="'.$insee.'" lat="'.
H A DpoiDB.class.php27 function getInsee ($insee) { argument
28 if (!isset ($this->dbByInsee [$insee]))
30 return $this->dbByInsee [$insee];
90 list ($insee, $end) = explode ('|', $line, 2);
91 $this->dbByInsee [$insee][] = $end;