当前位置: 首页>>代码示例>>PHP>>正文


PHP Location::getLocationName方法代码示例

本文整理汇总了PHP中Location::getLocationName方法的典型用法代码示例。如果您正苦于以下问题:PHP Location::getLocationName方法的具体用法?PHP Location::getLocationName怎么用?PHP Location::getLocationName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Location的用法示例。


在下文中一共展示了Location::getLocationName方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: Save

 public function Save(Location $location)
 {
     try {
         $SQL = self::$INSERT;
         if ($location->getSeq() != null && $location->getSeq() != "" && $location->getSeq() > 0) {
             $SQL = self::$UPDATE;
         }
         $conn = self::$db->getConnection();
         $stmt = $conn->prepare($SQL);
         $stmt->bindValue(':name', $location->getLocationName());
         $stmt->bindValue(':locationfolder', $location->getLocationFolder());
         $stmt->bindValue(':details', $location->getLocationDetails());
         $isPrivate = 0;
         if ($location->getIsPrivate() == true || $location->getIsPrivate() == 1) {
             $isPrivate = 1;
         }
         $stmt->bindValue(':hasdirectory', $location->getHasDirectory());
         $stmt->bindValue(':isprivate', $isPrivate);
         if ($SQL == self::$UPDATE) {
             $stmt->bindValue(':locationSeq', $location->getSeq());
         }
         $stmt->execute();
         $error = $stmt->errorInfo();
         if ($error[2] != "") {
             throw new Exception($error[2]);
         }
     } catch (Exception $e) {
         $logger = Logger::getLogger($ConstantsArray["logger"]);
         $logger->error("Error During Save Location : - " . $e->getMessage());
     }
     //I will be put code here for throw exception and show on the screen
 }
开发者ID:munishsethi777,项目名称:eliveui,代码行数:32,代码来源:LocationDataStore.php

示例2:

        <td class="ui-widget-content">
            <form name="frm1" method="post" action="CreateLocation.php">
            <input type="hidden" name="seq" id="seq" value="<?php 
echo $location->getSeq();
?>
" /> 
             <input type="hidden" name="folderName" id="folderName" value="<?php 
echo $location->getLocationFolder();
?>
" />    
                <table width="100%" border="0" style="padding:10px 10px 10px 10px;">                
                    
                  <tr>
                    <td width="22%">Location Name :</td>
                    <td width="40%"><input name="location" type="text" size="50" value="<?php 
echo $location->getLocationName();
?>
" >
                    </td><td><span style="color:#FF0000; margin-bottom:15px;" >*</span></td>
                  </tr>
                  <tr>
                    <td>Location Details :</td>
                    <td><textarea name="details" id="details" cols="38" rows="4" ><?php 
echo $location->getLocationDetails();
?>
</textarea>
                      &nbsp;</td>
                  </tr>
                  <tr>
                    <td>Create Directory</td>
                    <?php 
开发者ID:munishsethi777,项目名称:eliveui,代码行数:31,代码来源:CreateLocation.php

示例3: equals

 public function equals(Location $location)
 {
     return $this->getLocationName() == $location->getLocationName();
 }
开发者ID:WP-SUHV,项目名称:wp-suapi,代码行数:4,代码来源:WP_SUAPI_API_Object.php

示例4: update

 public function update(Location $loc)
 {
     $query = "UPDATE `location` SET `location_name`='" . $loc->getLocationName() . "',`location_city`='" . $loc->getLocationCity() . "',`longitude`='" . $loc->getLongitude() . "',`latitude`='" . $loc->getLatitude() . "',`altitude`='" . $loc->getAltitude() . "' WHERE `idlocation`='" . $loc->getLocationId() . "'";
     $this->con->openConnection();
     $this->con->executeRawQuery($query);
     $this->con->closeConnection();
 }
开发者ID:roshanmadhushanka,项目名称:Environment-Monitoring-System,代码行数:7,代码来源:LocationController.php


注:本文中的Location::getLocationName方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。