本文整理汇总了PHP中getState函数的典型用法代码示例。如果您正苦于以下问题:PHP getState函数的具体用法?PHP getState怎么用?PHP getState使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了getState函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get_substitutionarray_thirdparty
/**
* Define array with couple subtitution key => subtitution value
*
* @param Object $object Object
* @param Translate $outputlangs Language object for output
* @return array Array of substitution key->code
*/
function get_substitutionarray_thirdparty($object, $outputlangs)
{
global $conf;
if (empty($object->country) && !empty($object->country_code)) {
$object->country = $outputlangs->transnoentitiesnoconv("Country" . $object->country_code);
}
if (empty($mysoc->state) && !empty($mysoc->state_code)) {
$object->state = getState($object->state_code, 0);
}
return array('company_name' => $object->name, 'company_email' => $object->email, 'company_phone' => $object->phone, 'company_fax' => $object->fax, 'company_address' => $object->address, 'company_zip' => $object->zip, 'company_town' => $object->town, 'company_country' => $object->country, 'company_country_code' => $object->country_code, 'company_state' => $object->state, 'company_state_code' => $object->state_code, 'company_web' => $object->url, 'company_barcode' => $object->barcode, 'company_vatnumber' => $object->tva_intra, 'company_customercode' => $object->code_client, 'company_suppliercode' => $object->code_fournisseur, 'company_customeraccountancycode' => $object->code_compta, 'company_supplieraccountancycode' => $object->code_compta_fournisseur, 'company_juridicalstatus' => $object->forme_juridique, 'company_capital' => $object->capital, 'company_idprof1' => $object->idprof1, 'company_idprof2' => $object->idprof2, 'company_idprof3' => $object->idprof3, 'company_idprof4' => $object->idprof4, 'company_idprof5' => $object->idprof5, 'company_idprof6' => $object->idprof6, 'company_note' => $object->note);
}
示例2: getCountry
</td>
<td align="center"><?php
echo $row['BuyerName'];
?>
</td>
<td align="center"><?php
echo $row['Address'];
?>
</td>
<td align="center"><?php
echo getCountry($row['CountryId']);
?>
</td>
<td align="center"><?php
if ($row['State'] != 0) {
echo getState($row['State']);
} else {
echo $row['OtherState'];
}
?>
</td>
<td align="center"><?php
if ($row['City'] != 0) {
echo getCity($row['City']);
} else {
echo $row['OtherCity'];
}
?>
</td>
<td align="center"><?php
echo $row['Email'];
示例3: processMessage
public function processMessage($message)
{
LogWrite("LinnDSClientSocket::processMessage - {$message}");
$DataHandled = false;
if ($DEBUG > 1) {
LogWrite($message);
}
if (strpos($message, "Jukebox") !== false) {
// Here things happens - we execute the actions sent from the
// application, by issuing a number of ACTIONs.
$D = getParameters($message);
if (strpos($message, "Jukebox PlayNow ") !== false) {
//Jukebox PlayNow \"(\d+)\" \"(\d+)\"
$JukeBoxPlay = $D[0];
$JukeBoxTrack = $D[1];
LogWrite("JukeBoxPlayNow: " . $JukeBoxPlay . ", " . $JukeBoxTrack);
if ($this->listeningSocket->getLPECListeningSocket()->CallClients('SelectPlaylist') == false) {
$Continue = false;
}
if ($this->listeningSocket->getLPECListeningSocket()->CallClients('Stop') == false) {
$Continue = false;
}
$musicDB = new MusicDB();
if ($this->listeningSocket->getLPECListeningSocket()->CallClients1('DeleteAll', $musicDB) == false) {
$Continue = false;
}
if ($this->listeningSocket->getLPECListeningSocket()->CallClients4('InsertDIDL_list', $musicDB, $JukeBoxPlay, $JukeBoxTrack, 0) == false) {
$Continue = false;
}
$musicDB->close();
//Send("ACTION Ds/Jukebox 3 SetCurrentPreset \"" . $JukeBoxPlay . "\"");
if ($this->listeningSocket->getLPECListeningSocket()->CallClients('Play') == false) {
$Continue = false;
}
if ($this->listeningSocket->getLPECListeningSocket()->Send("ACTION Ds/Playlist 1 IdArray") == false) {
$Continue = false;
}
$DataHandled = true;
} elseif (strpos($message, "Jukebox PlayNext ") !== false) {
//Jukebox PlayNext \"(\d+)\" \"(\d+)\"
$JukeBoxPlay = $D[0];
$JukeBoxTrack = $D[1];
LogWrite("JukeBoxPlayNext: " . $JukeBoxPlay . ", " . $JukeBoxTrack);
if ($this->listeningSocket->getLPECListeningSocket()->CallClients('SelectPlaylist') == false) {
$Continue = false;
}
$musicDB = new MusicDB();
if ($this->listeningSocket->getLPECListeningSocket()->CallClients4('InsertDIDL_list', $musicDB, $JukeBoxPlay, $JukeBoxTrack, $this->getState()->getState('Id')) == false) {
$Continue = false;
}
$musicDB->close();
if ($this->listeningSocket->getLPECListeningSocket()->CallClients('Play') == false) {
$Continue = false;
}
if ($this->listeningSocket->getLPECListeningSocket()->Send("ACTION Ds/Playlist 1 IdArray") == false) {
$Continue = false;
}
if ($DEBUG > 0) {
//LogWrite($message);
//print_r($State);
}
$DataHandled = true;
} elseif (strpos($message, "Jukebox PlayLater ") !== false) {
//Jukebox PlayLater \"(\d+)\" \"(\d+)\"
$JukeBoxPlay = $D[0];
$JukeBoxTrack = $D[1];
LogWrite("JukeBoxPlayLater: " . $JukeBoxPlay . ", " . $JukeBoxTrack);
if ($this->listeningSocket->getLPECListeningSocket()->CallClients('SelectPlaylist') == false) {
$Continue = false;
}
$musicDB = new MusicDB();
if ($this->listeningSocket->getLPECListeningSocket()->CallClients4('InsertDIDL_list', $musicDB, $JukeBoxPlay, $JukeBoxTrack, end($this->getState()->getState('IdArray'))) == false) {
$Continue = false;
}
$musicDB->close();
if ($this->listeningSocket->getLPECListeningSocket()->CallClients('Play') == false) {
$Continue = false;
}
$this->listeningSocket->getLPECListeningSocket()->Send("ACTION Ds/Playlist 1 IdArray");
if ($DEBUG > 0) {
//LogWrite($message);
//print_r($State);
}
$DataHandled = true;
} elseif (strpos($message, "Jukebox PlayRandomTracks ") !== false) {
//Jukebox PlayRandomTracks \"(\d+)\" \"(\d+)\"
$JukeBoxFirstAlbum = $D[0];
$JukeBoxLastAlbum = $D[1];
LogWrite("JukeBoxPlayRandomTracks: " . $JukeBoxFirstAlbum . ", " . $JukeBoxLastAlbum);
if ($this->listeningSocket->getLPECListeningSocket()->CallClients('SelectPlaylist') == false) {
$Continue = false;
}
$musicDB = new MusicDB();
if ($this->getState()->getState('TransportState') == "Stopped") {
if ($this->listeningSocket->getLPECListeningSocket()->CallClients1('DeleteAll', $musicDB) == false) {
$Continue = false;
}
}
for ($i = 0; $i < 50; $i++) {
$RandomPreset = rand($JukeBoxFirstAlbum, $JukeBoxLastAlbum);
//.........这里部分代码省略.........
示例4: sys_get_temp_dir
require_once '../../resources/portabilityLayer.php';
# This script may only be used by appcache/fail-on-update-2.html test, since it uses global data.
$tmpFile = sys_get_temp_dir() . "/" . "appcache_fail-on-update-2_state";
function setState($newState, $file)
{
file_put_contents($file, $newState);
}
function getState($file)
{
if (!file_exists($file)) {
return "Uninitialized";
}
return file_get_contents($file);
}
$command = $_GET['command'];
$state = getState($tmpFile);
header("Expires: Thu, 01 Dec 2003 16:00:00 GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
if ($command == "reset") {
unlink($tmpFile);
} else {
if ($command == "delete") {
setState("Deleted", $tmpFile);
} else {
if ($state == "Uninitialized") {
header("Content-Type: text/cache-manifest");
print "CACHE MANIFEST\n";
print "fail-on-update-2.html\n";
print "NETWORK:\n";
print "fail-on-update-2.php?command=\n";
示例5: getBackUrl
function getBackUrl()
{
return getState('back_url');
}
示例6: getTime
$nome = $perfil['personaname'];
$lastLogin = $perfil['lastlogoff'];
$lastLogin = getTime($lastLogin);
$imgProf = $perfil['avatarfull'];
$estado = $perfil['personastate'];
$estado = getState($estado);
$tempoConta = $perfil['timecreated'];
$tempoConta = getTimed($tempoConta);
$jogando = $perfil['gameextrainfo'];
}*/
$imgProf = $steamprofile['avatarfull'];
$nome = $steamprofile['personaname'];
$lastLogin = $steamprofile['lastlogoff'];
$lastLogin = getTime($lastLogin);
$estado = $steamprofile['personastate'];
$estado = getState($estado);
$tempoConta = $steamprofile['timecreated'];
$tempoConta = getTimed($tempoConta);
$jogando = $steamprofile['gameextrainfo'];
$Img = "<img src={$imgProf} class=\"profimg\" style='";
if ($estado == "Offline") {
$Img .= "border-color: #b6b6ba;'/>";
} else {
$Img .= "border-color: #a2a9ec;'/>";
}
$Perf = "<div class=\"info\">\n <span style='font-size:20px;font-weight: bold;'>{$nome}</span></br>\n Estado: {$estado}</br>\n Último Login: {$lastLogin}</br>\n Usuário Steam desde: {$tempoConta}</br>";
if (isset($jogando)) {
$Perf .= "Jogando: {$jogando}";
echo "<style> .profimg{border-color: #47f360;}</style>";
} else {
}
示例7: picto_from_langcode
print '</td></tr>';
// Status
print '<tr><td>' . $langs->trans("Status") . '</td>';
print '<td colspan="3">' . $account->getLibStatut(4) . '</td></tr>';
// Country
print '<tr><td>' . $langs->trans("BankAccountCountry") . '</td><td>';
if ($account->country_id > 0) {
$img = picto_from_langcode($account->country_code);
print $img ? $img . ' ' : '';
print getCountry($account->getCountryCode(), 0, $db);
}
print '</td></tr>';
// State
print '<tr><td>' . $langs->trans('State') . '</td><td>';
if ($account->state_id > 0) {
print getState($account->state_id);
}
print '</td></tr>';
// Conciliate
print '<tr><td>' . $langs->trans("Conciliable") . '</td>';
print '<td colspan="3">';
$conciliate = $account->canBeConciliated();
if ($conciliate == -2) {
print $langs->trans("No") . ' (' . $langs->trans("CashAccount") . ')';
} else {
if ($conciliate == -3) {
print $langs->trans("No") . ' (' . $langs->trans("Closed") . ')';
} else {
print $account->rappro == 1 ? $langs->trans("Yes") : $langs->trans("No") . ' (' . $langs->trans("ConciliationDisabled") . ')';
}
}
示例8: getCountry
echo $sno;
?>
</td>
<td align="center"><?php
echo $row['BuyerName'];
?>
</td>
<td align="center"><?php
echo $row['Address'];
?>
</td>
<td align="center"><?php
echo getCountry($row['CountryId']);
?>
</td>
<td align="center"><? if($row['State']!=0){echo getState($row['State']);} else { echo $row['OtherState'];}?></td>
<td align="center"><? if($row['City']!=0){ echo getCity($row['City']);} else{ echo $row['OtherCity'];}?></td>
<td align="center"><?php
echo $row['Email'];
?>
</td>
<td align="center"><?php
echo $row['ContactNumber'];
?>
</td>
<td align="center"><a href="javascript:;" onClick="return hs.htmlExpand(this)">
<img src="images/Find-icon.png" border="0" width="24" height="24" /></a>
<div class="highslide-maincontent">
<table align="center" width="100%" cellpadding="1" cellspacing="1" border="0">
<tr class="gredBg">
<td align="center"><b>Name</b></td>
示例9: setCoordinates
/**
* @param IGeoCodingService $geo_service
* @return void
*/
public function setCoordinates(IGeoCodingService $geo_service)
{
list($lat, $lng) = $geo_service->getAddressCoordinates(new AddressInfo($this->getAddress(), '', $this->getZipCode(), $this > getState(), $this->getCity(), $this->getCountry()));
$this->Lat = $lat;
$this->Lng = $lng;
}
示例10: getLastColor
function getLastColor() { return getState('last_color'); }
示例11: pdf_build_address
/**
* Return a string with full address formated
* @param outputlangs Output langs object
* @param sourcecompany Source company object
* @param targetcompany Target company object
* @param targetcontact Target contact object
* @param usecontact Use contact instead of company
* @param mode Address type
* @param deliverycompany Delivery company object
* @return string String with full address
*/
function pdf_build_address($outputlangs, $sourcecompany, $targetcompany = '', $targetcontact = '', $usecontact = 0, $mode = 'source', $deliverycompany = '')
{
global $conf;
$stringaddress = '';
if ($mode == 'source' && !is_object($sourcecompany)) {
return -1;
}
if ($mode == 'target' && !is_object($targetcompany)) {
return -1;
}
if ($mode == 'delivery' && !is_object($deliverycompany)) {
return -1;
}
if ($sourcecompany->departement_id && empty($sourcecompany->departement)) {
$sourcecompany->departement = getState($sourcecompany->departement_id);
}
if ($targetcompany->departement_id && empty($targetcompany->departement)) {
$targetcompany->departement = getState($targetcompany->departement_id);
}
if ($mode == 'source') {
$stringaddress .= ($stringaddress ? "\n" : '') . pdf_format_address($outputlangs, $sourcecompany) . "\n";
// Tel
if ($sourcecompany->tel) {
$stringaddress .= ($stringaddress ? "\n" : '') . $outputlangs->transnoentities("Phone") . ": " . $outputlangs->convToOutputCharset($sourcecompany->tel);
}
// Fax
if ($sourcecompany->fax) {
$stringaddress .= ($stringaddress ? $sourcecompany->tel ? " - " : "\n" : '') . $outputlangs->transnoentities("Fax") . ": " . $outputlangs->convToOutputCharset($sourcecompany->fax);
}
// EMail
if ($sourcecompany->email) {
$stringaddress .= ($stringaddress ? "\n" : '') . $outputlangs->transnoentities("Email") . ": " . $outputlangs->convToOutputCharset($sourcecompany->email);
}
// Web
if ($sourcecompany->url) {
$stringaddress .= ($stringaddress ? "\n" : '') . $outputlangs->transnoentities("Web") . ": " . $outputlangs->convToOutputCharset($sourcecompany->url);
}
}
if ($mode == 'target') {
if ($usecontact) {
$stringaddress .= ($stringaddress ? "\n" : '') . $outputlangs->convToOutputCharset($targetcontact->getFullName($outputlangs, 1));
$stringaddress .= ($stringaddress ? "\n" : '') . pdf_format_address($outputlangs, $targetcontact) . "\n";
// Country
if ($targetcontact->pays_code && $targetcontact->pays_code != $sourcecompany->pays_code) {
$stringaddress .= $outputlangs->convToOutputCharset($outputlangs->transnoentitiesnoconv("Country" . $targetcontact->pays_code)) . "\n";
}
} else {
$stringaddress .= ($stringaddress ? "\n" : '') . pdf_format_address($outputlangs, $targetcompany) . "\n";
// Country
if ($targetcompany->pays_code && $targetcompany->pays_code != $sourcecompany->pays_code) {
$stringaddress .= $outputlangs->convToOutputCharset($outputlangs->transnoentitiesnoconv("Country" . $targetcompany->pays_code)) . "\n";
}
}
// Intra VAT
if ($targetcompany->tva_intra) {
$stringaddress .= "\n" . $outputlangs->transnoentities("VATIntraShort") . ': ' . $outputlangs->convToOutputCharset($targetcompany->tva_intra);
}
// Professionnal Ids
if ($conf->global->MAIN_PROFID1_IN_ADDRESS) {
$tmp = $outputlangs->transcountrynoentities("ProfId1", $targetcompany->pays_code);
if (preg_match('/\\((.+)\\)/', $tmp, $reg)) {
$tmp = $reg[1];
}
$stringaddress .= "\n" . $tmp . ': ' . $outputlangs->convToOutputCharset($targetcompany->idprof1);
}
if ($conf->global->MAIN_PROFID2_IN_ADDRESS) {
$tmp = $outputlangs->transcountrynoentities("ProfId2", $targetcompany->pays_code);
if (preg_match('/\\((.+)\\)/', $tmp, $reg)) {
$tmp = $reg[1];
}
$stringaddress .= "\n" . $tmp . ': ' . $outputlangs->convToOutputCharset($targetcompany->idprof2);
}
if ($conf->global->MAIN_PROFID3_IN_ADDRESS) {
$tmp = $outputlangs->transcountrynoentities("ProfId3", $targetcompany->pays_code);
if (preg_match('/\\((.+)\\)/', $tmp, $reg)) {
$tmp = $reg[1];
}
$stringaddress .= "\n" . $tmp . ': ' . $outputlangs->convToOutputCharset($targetcompany->idprof3);
}
if ($conf->global->MAIN_PROFID4_IN_ADDRESS) {
$tmp = $outputlangs->transcountrynoentities("ProfId4", $targetcompany->pays_code);
if (preg_match('/\\((.+)\\)/', $tmp, $reg)) {
$tmp = $reg[1];
}
$stringaddress .= "\n" . $tmp . ': ' . $outputlangs->convToOutputCharset($targetcompany->idprof4);
}
}
if ($mode == 'delivery') {
$stringaddress .= ($stringaddress ? "\n" : '') . pdf_format_address($outputlangs, $deliverycompany) . "\n";
//.........这里部分代码省略.........
示例12: picto_from_langcode
$var = !$var;
print '<tr ' . $bc[$var] . '><td width="35%">' . $langs->trans("CompanyTown") . '</td><td>' . (empty($conf->global->MAIN_INFO_SOCIETE_TOWN) ? '' : $conf->global->MAIN_INFO_SOCIETE_TOWN) . '</td></tr>';
$var = !$var;
print '<tr ' . $bc[$var] . '><td>' . $langs->trans("CompanyCountry") . '</td><td>';
if ($mysoc->country_code) {
$img = picto_from_langcode($mysoc->country_code);
print $img ? $img . ' ' : '';
print getCountry($mysoc->country_code, 1);
} else {
print img_warning() . ' <font class="error">' . $langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("CompanyCountry")) . '</font>';
}
print '</td></tr>';
$var = !$var;
print '<tr ' . $bc[$var] . '><td>' . $langs->trans("State") . '</td><td>';
if (!empty($conf->global->MAIN_INFO_SOCIETE_STATE)) {
print getState($conf->global->MAIN_INFO_SOCIETE_STATE);
} else {
print ' ';
}
print '</td></tr>';
$var = !$var;
print '<tr ' . $bc[$var] . '><td width="35%">' . $langs->trans("CompanyCurrency") . '</td><td>';
print currency_name($conf->currency, 1);
print ' (' . $langs->getCurrencySymbol($conf->currency) . ')';
print '</td></tr>';
$var = !$var;
print '<tr ' . $bc[$var] . '><td width="35%">' . $langs->trans("Phone") . '</td><td>' . dol_print_phone($conf->global->MAIN_INFO_SOCIETE_TEL, $mysoc->country_code) . '</td></tr>';
$var = !$var;
print '<tr ' . $bc[$var] . '><td width="35%">' . $langs->trans("Fax") . '</td><td>' . dol_print_phone($conf->global->MAIN_INFO_SOCIETE_FAX, $mysoc->country_code) . '</td></tr>';
$var = !$var;
print '<tr ' . $bc[$var] . '><td width="35%">' . $langs->trans("Mail") . '</td><td>' . dol_print_email($conf->global->MAIN_INFO_SOCIETE_MAIL, 0, 0, 0, 80) . '</td></tr>';
示例13: getRegionByID
$regionID = $_POST["regionID"];
getRegionByID($regionID, $mysqli);
}
if ($functionname == 'delRegion') {
$regionID = $_POST["regionID"];
delRegion($regionID, $mysqli);
}
/*State*/
if ($functionname == 'setState') {
$stateID = $_POST["stateID"];
$stateName = $_POST["stateName"];
$stateCode = $_POST["stateCode"];
setState($stateID, $stateName, $stateCode, $mysqli);
}
if ($functionname == 'getState') {
getState($mysqli);
}
if ($functionname == 'getStateByID') {
$stateID = $_POST["stateID"];
getStateByID($stateID, $mysqli);
}
if ($functionname == 'delState') {
$stateID = $_POST["stateID"];
delState($stateID, $mysqli);
}
/*City*/
if ($functionname == 'setCity') {
$cityID = $_POST["cityID"];
$cityName = $_POST["cityName"];
$cityCode = $_POST["cityCode"];
$cityStateID = $_POST["cityStateID"];
示例14: get_substitutionarray_contact
/**
* Define array with couple subtitution key => subtitution value
*
* @param Contact $object contact
* @param Translate $outputlangs object for output
* @param array_key $array_key Name of the key for return array
* @return array of substitution key->code
*/
function get_substitutionarray_contact($object, $outputlangs, $array_key = 'object')
{
global $conf;
if (empty($object->country) && !empty($object->country_code)) {
$object->country = $outputlangs->transnoentitiesnoconv("Country" . $object->country_code);
}
if (empty($object->state) && !empty($object->state_code)) {
$object->state = getState($object->state_code, 0);
}
$array_contact = array($array_key . '_fullname' => $object->getFullName($outputlangs, 1), $array_key . '_lastname' => $object->lastname, $array_key . '_firstname' => $object->firstname, $array_key . '_address' => $object->address, $array_key . '_zip' => $object->zip, $array_key . '_town' => $object->town, $array_key . '_state_id' => $object->state_id, $array_key . '_state_code' => $object->state_code, $array_key . '_state' => $object->state, $array_key . '_country_id' => $object->country_id, $array_key . '_country_code' => $object->country_code, $array_key . '_country' => $object->country, $array_key . '_poste' => $object->poste, $array_key . '_socid' => $object->socid, $array_key . '_statut' => $object->statut, $array_key . '_code' => $object->code, $array_key . '_email' => $object->email, $array_key . '_jabberid' => $object->jabberid, $array_key . '_phone_pro' => $object->phone_pro, $array_key . '_phone_perso' => $object->phone_perso, $array_key . '_phone_mobile' => $object->phone_mobile, $array_key . '_fax' => $object->fax, $array_key . '_birthday' => $object->birthday, $array_key . '_default_lang' => $object->default_lang, $array_key . '_note_public' => $object->note_public, $array_key . '_note_private' => $object->note_private);
// Retrieve extrafields
require_once DOL_DOCUMENT_ROOT . '/core/class/extrafields.class.php';
$extrafields = new ExtraFields($this->db);
$extralabels = $extrafields->fetch_name_optionals_label('socpeople', true);
$object->fetch_optionals($object->id, $extralabels);
foreach ($extrafields->attribute_label as $key => $label) {
if ($extrafields->attribute_type[$key] == 'price') {
$object->array_options['options_' . $key] = price($object->array_options['options_' . $key], 0, $outputlangs, 0, 0, -1, $conf->currency);
} elseif ($extrafields->attribute_type[$key] == 'select') {
$object->array_options['options_' . $key] = $extrafields->attribute_param[$key]['options'][$object->array_options['options_' . $key]];
}
$array_contact = array_merge($array_contact, array($array_key . '_options_' . $key => $object->array_options['options_' . $key]));
}
return $array_contact;
}
示例15: while
$University = "";
$Campus = "";
$Store = "";
// --------------------------------------------------
while ($condition) {
switch ($option) {
case "":
$option = getOptions();
// General Options
break;
case 1:
unset($state);
unset($University);
unset($Campus);
unset($StoreUrl);
$state = getState();
$University = getStateUniversity($state);
$Campus = getCampusUniversity($University[0]);
$Store = getBK_BOOKS_URL($Campus[0]);
$option = getOptions();
break;
case 2:
if ($Store != "") {
echo "Processsing File here \n\n\n";
//------------------- Start Processing File
//ProcessDataDigging($StoreUrl);
ProcessDataDigging_Generic($Store, $University[1], $Campus[1]);
}
$option = getOptions();
// General Options
break;