本文整理汇总了PHP中Translation::addOperator方法的典型用法代码示例。如果您正苦于以下问题:PHP Translation::addOperator方法的具体用法?PHP Translation::addOperator怎么用?PHP Translation::addOperator使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Translation
的用法示例。
在下文中一共展示了Translation::addOperator方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: checkTranslation
public static function checkTranslation($ident, $web = true)
{
global $globalTranslationSources, $globalTranslationFetch;
if (!isset($globalTranslationSources)) {
$globalTranslationSources = array('planefinder');
}
if (!isset($globalTranslationFetch)) {
$globalTranslationFetch = TRUE;
}
//echo "Check Translation for ".$ident."...";
$correct = Translation::getOperator($ident);
if ($correct != '' && $correct != $ident) {
//echo "Found in DB !\n";
return $correct;
} elseif ($web && $globalTranslationFetch) {
if (!is_numeric(substr($ident, -4))) {
if (count($globalTranslationSources) > 0) {
$correct = Translation::fromPlanefinder($ident);
if ($correct != '') {
$correct = Translation::ident2icao($correct);
if ($correct != $ident) {
Translation::addOperator($ident, $correct, 'planefinder');
//echo "Add to DB ! (".$correct.") \n";
return $correct;
}
}
}
}
}
return Translation::ident2icao($ident);
}
示例2: addModeSData
/**
* Add ModeS data to DB
*
* @param String $ident ident
* @param String $registration Registration of the aircraft
* @param String $icao
* @param String $ICAOTypeCode
*/
public function addModeSData($ident, $registration, $icao = '', $ICAOTypeCode = '')
{
global $globalDebug, $globalDBdriver;
$ident = trim($ident);
$Translation = new Translation();
$Spotter = new Spotter();
if ($globalDebug) {
echo "Test if we add ModeS data...";
}
//if ($icao == '') $icao = ACARS->ident2icao($ident);
if ($icao == '') {
$icao = $Translation->checkTranslation($ident);
}
if ($globalDebug) {
echo '- Ident : ' . $icao . ' - ';
}
if ($ident == '' || $registration == '') {
if ($globalDebug) {
echo "Ident or registration null, exit\n";
}
return '';
}
$registration = str_replace('.', '', $registration);
$ident = $Translation->ident2icao($ident);
// Check if a flight with same registration is flying now, if ok check if callsign = name in ACARS, else add it to translation
if ($globalDebug) {
echo "Check if needed to add translation " . $ident . '... ';
}
$querysi = "SELECT ident FROM spotter_live s,aircraft_modes a WHERE a.ModeS = s.ModeS AND a.Registration = :registration LIMIT 1";
$querysi_values = array(':registration' => $registration);
try {
$sthsi = $this->db->prepare($querysi);
$sthsi->execute($querysi_values);
} catch (PDOException $e) {
if ($globalDebug) {
echo $e->getMessage();
}
return "error : " . $e->getMessage();
}
$resultsi = $sthsi->fetch(PDO::FETCH_ASSOC);
//print_r($resultsi);
if (count($resultsi) > 0 && $resultsi['ident'] != $ident && $resultsi['ident'] != '') {
$Translation = new Translation();
$trans_ident = $Translation->getOperator($resultsi['ident']);
if ($globalDebug) {
echo 'Add translation to table : ' . $ident . ' -> ' . $resultsi['ident'] . ' ';
}
if ($ident != $trans_ident) {
$Translation->addOperator($resultsi['ident'], $ident, 'ACARS');
} elseif ($trans_ident == $ident) {
$Translation->updateOperator($resultsi['ident'], $ident, 'ACARS');
}
}
if ($globalDebug) {
echo 'Done' . "\n";
}
$query = "SELECT flightaware_id, ModeS FROM spotter_output WHERE ident = :ident ORDER BY spotter_id DESC LIMIT 1";
$query_values = array(':ident' => $icao);
try {
$sth = $this->db->prepare($query);
$sth->execute($query_values);
} catch (PDOException $e) {
if ($globalDebug) {
echo $e->getMessage();
}
return "error : " . $e->getMessage();
}
$result = $sth->fetch(PDO::FETCH_ASSOC);
//print_r($result);
if (isset($result['flightaware_id'])) {
if (isset($result['ModeS'])) {
$ModeS = $result['ModeS'];
} else {
$ModeS = '';
}
if ($ModeS == '') {
$id = explode('-', $result['flightaware_id']);
$ModeS = $id[0];
}
if ($ModeS != '') {
$country = $Spotter->countryFromAircraftRegistration($registration);
$queryc = "SELECT * FROM aircraft_modes WHERE ModeS = :modes LIMIT 1";
$queryc_values = array(':modes' => $ModeS);
try {
$sthc = $this->db->prepare($queryc);
$sthc->execute($queryc_values);
} catch (PDOException $e) {
if ($globalDebug) {
echo $e->getMessage();
}
return "error : " . $e->getMessage();
}
//.........这里部分代码省略.........