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


PHP Address::__construct方法代码示例

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


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

示例1: __construct

 /**
  * Constructor: initializes all values
  *
  * @param array $data
  */
 public function __construct($data = array())
 {
     parent::__construct(array_merge(array('id' => null, 'warehouseId' => null, 'streetAddress' => null, 'city' => null, 'state' => null, 'postalCode' => null, 'longitude' => null, 'latitude' => null, 'products' => array()), $data), \ArrayObject::ARRAY_AS_PROPS);
     if (!empty($data) && (empty($data['longitude']) || empty($data['latitude']))) {
         $this->geoCodeAddress();
     }
 }
开发者ID:jim5359,项目名称:shipwire,代码行数:12,代码来源:Order.php

示例2: __construct

 public function __construct()
 {
     parent::__construct();
     if (isset($_SESSION['blockid'])) {
         $this->blockid = $_SESSION['blockid'];
     }
 }
开发者ID:abhipil,项目名称:hoods,代码行数:7,代码来源:Block.class.php

示例3: __construct

 /**
  * @param ArrayOfString $StreetLines
  * @param string $City
  * @param string $State
  * @param string $Zip
  * @param string $Country
  * @param int $Id
  * @param boolean $DefaultFlag
  * @param int $CompanyId
  * @param string $SiteName
  */
 public function __construct($StreetLines = null, $City = null, $State = null, $Zip = null, $Country = null, $Id = null, $DefaultFlag = null, $CompanyId = null, $SiteName = null)
 {
     parent::__construct($StreetLines, $City, $State, $Zip, $Country);
     $this->Id = $Id;
     $this->DefaultFlag = $DefaultFlag;
     $this->CompanyId = $CompanyId;
     $this->SiteName = $SiteName;
 }
开发者ID:JustinAzoff,项目名称:connectwise-php-generator,代码行数:19,代码来源:CompanyAddress.php

示例4: __construct

 /**
  * Creates a array index address
  *
  * @param  int $pos
  * @param  parent $parent
  */
 public function __construct($pos, parent $parent)
 {
     $this->pos = $pos;
     if (is_array($parent->reference) && array_key_exists($this->pos, $parent->reference)) {
         parent::__construct($parent->reference[$this->pos], $parent);
     } else {
         parent::__construct(self::$null, $parent, false);
     }
 }
开发者ID:xp-forge,项目名称:json-patch,代码行数:15,代码来源:ArrayIndex.class.php

示例5: __construct

 /**
  * Creates a new "end of array" address
  *
  * @param  parent $parent
  */
 public function __construct(parent $parent)
 {
     parent::__construct(self::$null, $parent, false);
 }
开发者ID:xp-forge,项目名称:json-patch,代码行数:9,代码来源:ArrayEnd.class.php

示例6: __construct

 public function __construct($root_zone, $contry_code)
 {
     parent::__construct($root_zone);
     $this->zone1 = parent::getParentZone()->get($contry_code);
     $this->zone1->getAttribute("Type")->set("Country");
 }
开发者ID:googlecode-mirror,项目名称:blksqltree,代码行数:6,代码来源:class.country.php

示例7: __construct

 public function __construct($type, $address, $name = null)
 {
     $this->setType($type);
     parent::__construct($address, $name);
 }
开发者ID:eix,项目名称:core,代码行数:5,代码来源:Recipient.php


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