コード例 #1
0
ファイル: ReportConfig.php プロジェクト: dschwen/CRM
 function MakeSalutation($famID)
 {
     return MakeSalutationUtility($famID);
 }
コード例 #2
0
ファイル: MapUsingGoogle.php プロジェクト: dschwen/CRM
                                 new google.maps.Point(-4, 34));

			var famMark<?php 
        echo $fam_ID;
        ?>
 = new google.maps.Marker({
                                                                    position: new google.maps.LatLng(<?php 
        echo $fam_latitude . ", " . $fam_longitude;
        ?>
),
                                                                    shadow:shadow, 
                                                                    icon: image,
                                                                    map: map
                                                                                   });
			<?php 
        $famDescription = MakeSalutationUtility($fam_ID);
        $famDescription .= "<p>" . $fam_Address1 . "<p>" . $fam_City . ", " . $fam_State . "  " . $fam_Zip;
        ?>
                        var fam<?php 
        echo $fam_ID;
        ?>
InfoWin = new google.maps.InfoWindow({content: "<?php 
        echo $famDescription;
        ?>
"}); 
			google.maps.event.addListener(famMark<?php 
        echo $fam_ID;
        ?>
, "click", function() {
                                                      fam<?php 
        echo $fam_ID;
コード例 #3
0
ファイル: CSVCreateFile.php プロジェクト: jwigal/emcommdb
     if (isset($_POST["Title"])) {
         $sString .= "\",\"" . $per_Title;
     }
     if (isset($_POST["FirstName"])) {
         $sString .= "\",\"" . $per_FirstName;
     }
     if (isset($_POST["Suffix"])) {
         $sString .= "\",\"" . $per_Suffix;
     }
     if (isset($_POST["MiddleName"])) {
         $sString .= "\",\"" . $per_MiddleName;
     }
 } else {
     if ($sFormat == "rollup") {
         if ($memberCount > 1) {
             $sString = "\"" . MakeSalutationUtility($fam_ID);
         } else {
             $sString = "\"" . $per_LastName . ", " . $per_FirstName;
         }
     }
 }
 if (isset($_POST["Address1"])) {
     $sString .= "\",\"" . $sAddress1;
 }
 if (isset($_POST["Address2"])) {
     $sString .= "\",\"" . $sAddress2;
 }
 if (isset($_POST["City"])) {
     $sString .= "\",\"" . $sCity;
 }
 if (isset($_POST["State"])) {