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


PHP WebVista_Model_ORM::__construct方法代码示例

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


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

示例1: __construct

 public function __construct()
 {
     parent::__construct();
     $this->person = new Person();
     $this->permissionTemplate = new PermissionTemplate();
     $this->permissionTemplate->_cascadePersist = false;
 }
开发者ID:jakedorst,项目名称:ch3-dev-preview,代码行数:7,代码来源:User.php

示例2: Person

 function __construct()
 {
     parent::__construct();
     $this->person = new Person();
     $this->homeAddress = new Address();
     $this->billingAddress = new Address();
     //$this->phoneNumber = new PhoneNumber();
 }
开发者ID:psoas,项目名称:ch3-dev-preview,代码行数:8,代码来源:Patient.php

示例3: __construct

 public function __construct()
 {
     parent::__construct();
     $this->audit = new Audit();
     $this->audit->_cascadePersist = $this->_cascadePersist;
     $this->handler = new Handler();
     $this->handler->_cascadePersist = $this->_cascadePersist;
 }
开发者ID:dragonlet,项目名称:clearhealth,代码行数:8,代码来源:ProcessingError.php

示例4: __construct

 public function __construct()
 {
     parent::__construct();
     $this->building = new Building();
     $this->building->_cascadePersist = false;
     $this->provider = new Provider();
     $this->provider->_cascadePersist = false;
 }
开发者ID:dragonlet,项目名称:clearhealth,代码行数:8,代码来源:EPrescriber.php

示例5: Medication

 function __construct()
 {
     parent::__construct();
     $this->medication = new Medication();
     $this->medication->_cascadePersist = false;
     $this->refillResponse = new MedicationRefillResponse();
     $this->refillResponse->_cascadePersist = false;
 }
开发者ID:dragonlet,项目名称:clearhealth,代码行数:8,代码来源:MedicationRefillRequest.php

示例6: __construct

 public function __construct()
 {
     parent::__construct();
     $this->company = new Company();
     $this->company->_cascadePersist = $this->_cascadePersist;
     $this->address = new Address();
     $this->address->_cascadePersist = $this->_cascadePersist;
 }
开发者ID:dragonlet,项目名称:clearhealth,代码行数:8,代码来源:InsuranceProgram.php

示例7: __construct

 public function __construct()
 {
     parent::__construct();
     $this->healthStatusHandler = new HealthStatusHandler();
     $this->healthStatusHandler->_cascadePersist = $this->_cascadePersist;
     $this->person = new Patient();
     $this->person->_cascadePersist = $this->_cascadePersist;
 }
开发者ID:dragonlet,项目名称:clearhealth,代码行数:8,代码来源:HealthStatusHandlerPatient.php

示例8: __construct

 public function __construct()
 {
     $this->person = new Person();
     $this->person->_cascadePersist = false;
     $this->provider = new Provider();
     $this->provider->_cascadePersist = false;
     parent::__construct();
 }
开发者ID:dragonlet,项目名称:clearhealth,代码行数:8,代码来源:ProblemList.php

示例9: __construct

 public function __construct()
 {
     parent::__construct();
     $this->patient = new Patient();
     $this->patient->_cascadePersist = $this->_cascadePersist;
     $this->user = new User();
     $this->user->_cascadePersist = $this->_cascadePersist;
 }
开发者ID:dragonlet,项目名称:clearhealth,代码行数:8,代码来源:PatientNote.php

示例10: __construct

 public function __construct()
 {
     parent::__construct();
     $this->insuranceProgram = new InsuranceProgram();
     $this->insuranceProgram->_cascadePersist = $this->_cascadePersist;
     $this->person = new Person();
     $this->person->_cascadePersist = $this->_cascadePersist;
 }
开发者ID:jakedorst,项目名称:ch3-dev-preview,代码行数:8,代码来源:InsuredRelationship.php

示例11: __construct

 public function __construct()
 {
     parent::__construct();
     $this->provider = new Provider();
     $this->provider->_cascadePersist = false;
     $this->room = new Room();
     $this->room->_cascadePersist = false;
 }
开发者ID:dragonlet,项目名称:clearhealth,代码行数:8,代码来源:Schedule.php

示例12: __construct

 public function __construct($objectType = self::TYPE_EPRESCRIBE)
 {
     parent::__construct();
     $this->person = new Person();
     $this->person->_cascadePersist = false;
     $this->provider = new Provider();
     $this->provider->_cascadePersist = false;
     $this->setObjectType($objectType);
 }
开发者ID:dragonlet,项目名称:clearhealth,代码行数:9,代码来源:Messaging.php

示例13: __construct

 public function __construct()
 {
     parent::__construct();
     $this->audit = new Audit();
     $this->audit->_cascadePersist = false;
     $this->pharmacy = new Pharmacy();
     $this->pharmacy->_cascadePersist = false;
     $this->medication = new Medication();
     $this->medication->_cascadePersist = false;
 }
开发者ID:dragonlet,项目名称:clearhealth,代码行数:10,代码来源:MessagingEPrescribe.php

示例14: __construct

 public function __construct($table = null, $ormClass = null)
 {
     parent::__construct();
     if ($table !== null) {
         $this->_table = $table;
     }
     if ($ormClass !== null) {
         $this->_ormClass = $ormClass;
     }
 }
开发者ID:dragonlet,项目名称:clearhealth,代码行数:10,代码来源:ClosureBase.php

示例15: __construct

 public function __construct()
 {
     parent::__construct();
     $this->patient = new Patient();
     $this->patient->_cascadePersist = false;
     $this->provider = new Provider();
     $this->provider->_cascadePersist = false;
     $this->pharmacy = new Pharmacy();
     $this->pharmacy->_cascadePersist = false;
 }
开发者ID:dragonlet,项目名称:clearhealth,代码行数:10,代码来源:Medication.php


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