當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。