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


PHP Object::construct方法代码示例

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


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

示例1: __construct

 function __construct()
 {
     $this->counter1 = Object::construct("WHCounter");
     $this->counter2 = Object::construct("WHCounter");
     $this->counter3 = Object::construct("WHCounter");
     $this->counter4 = Object::construct("WHCounter");
 }
开发者ID:hellogerard,项目名称:TicTacPhaux,代码行数:7,代码来源:WHMultiCounter.php

示例2: fromSqlValueStringWithConnection

 public function fromSqlValueStringWithConnection($aString, $reServeConnection)
 {
     if ($aString == NULL) {
         return NULL;
     }
     return Object::construct("REServeProxyObject")->setDatabase($reServeConnection)->setOid((int) $aString);
 }
开发者ID:hellogerard,项目名称:TicTacPhaux,代码行数:7,代码来源:REServeAnySubclass.php

示例3: __construct

 public function __construct()
 {
     foreach ($this->classes as $class) {
         $objects[] = Object::construct($class);
     }
     return $this;
 }
开发者ID:hellogerard,项目名称:TicTacPhaux,代码行数:7,代码来源:WHMultipleInheritance.php

示例4: onAnswerCallback

 public function onAnswerCallback($object, $method, $arguments = "")
 {
     if ($arguments == "") {
         $arguments = array();
     }
     $this->dialogCallback = Object::construct("WHCallback")->setObject($object)->setMethod($method)->setArguments($arguments);
     return $this;
 }
开发者ID:hellogerard,项目名称:TicTacPhaux,代码行数:8,代码来源:WHComponent.php

示例5: startUpOnAppWithIni

 static function startUpOnAppWithIni($app, $app_configuration)
 {
     ini_set("session.use_cookies", $app_configuration['general']['use_cookie']);
     ini_set("session.name", "SID");
     $configuration_class = $app_configuration['general']['configuration_class'];
     $configuration = Object::construct($configuration_class);
     $configuration->setApplicationName($app)->setConfigValues($app_configuration);
     return $configuration;
 }
开发者ID:hellogerard,项目名称:TicTacPhaux,代码行数:9,代码来源:WHConfiguration.php

示例6: dayOfMeeting

 public function dayOfMeeting()
 {
     /*
      ** Lazy initialization
      */
     if ($this->dayOfMeeting == NULL) {
         $this->dayOfMeeting = Object::construct("WHDate");
     }
     return $this->dayOfMeeting;
 }
开发者ID:hellogerard,项目名称:TicTacPhaux,代码行数:10,代码来源:WHREServeContactModel.php

示例7: start

 public function start()
 {
     parent::start();
     if (!is_object($this->db)) {
         $this->db = Object::construct($this->configuration()->configValueBySubjectAndKey("REServe", "type"));
         $this->db->setAutomaticTableCreation($automatic_table_creation);
     }
     $this->connect();
     return $this;
 }
开发者ID:hellogerard,项目名称:TicTacPhaux,代码行数:10,代码来源:WHREServeSession.php

示例8: column

 public function column($aKeyPath, $aClass, $aRowName = "", $shouldUpdateValue = TRUE)
 {
     if ($aRowName == "") {
         $aRowName = $aKeyPath;
     }
     if (!is_object($aClass)) {
         $aClass = Object::construct($aClass);
     }
     $this->columns[] = Object::construct('REServeColumnDefinition')->setName($aRowName)->setKeyPath($aKeyPath)->setType($aClass)->setShouldUpdateValue($shouldUpdateValue);
     return $this;
 }
开发者ID:hellogerard,项目名称:TicTacPhaux,代码行数:11,代码来源:REServeTableDefinition.php

示例9: tableDefinition

 public function tableDefinition()
 {
     return Object::construct("REServeTableDefinition")->column("oid", "REServeCollectionId", 'objectId', FALSE)->column('parentId', REInteger)->column('key', REInteger)->column('value', $this->valueType());
 }
开发者ID:hellogerard,项目名称:TicTacPhaux,代码行数:4,代码来源:REArray.php

示例10: registerObjectOnKeyPath

 public function registerObjectOnKeyPath($anObject, $aStringKeyPath)
 {
     $this->registeredObjects[] = Object::construct("WHRegisteredObject")->setOnObject($anObject)->setKeyPath($aStringKeyPath)->setValue($anObject->getByKeyPath($aStringKeyPath));
     return $this;
 }
开发者ID:hellogerard,项目名称:TicTacPhaux,代码行数:5,代码来源:WHStateRegistry.php

示例11: callbackForRemove

 public function callbackForRemove($object, $method)
 {
     $this->removeCallback = Object::construct("WHCallback")->setObject($object)->setMethod($method);
 }
开发者ID:hellogerard,项目名称:TicTacPhaux,代码行数:4,代码来源:WHREServeList.php

示例12: setCurrentContact

 public function setCurrentContact($aContact)
 {
     $this->currentContactComponent = Object::construct("WHREServeModelEdit")->setReserveable($aContact);
     return $this;
 }
开发者ID:hellogerard,项目名称:TicTacPhaux,代码行数:5,代码来源:WHREServeTest.php

示例13: fromSqlValueStringWithConnection

 public function fromSqlValueStringWithConnection($aString, $reServeConnection)
 {
     if ($aString == NULL) {
         return NULL;
     }
     $toReturn = Object::construct("REServeProxyObject")->setDatabase($reServeConnection)->setOid((int) $aString)->setObjectClass(get_class($this));
     $reServeConnection->putInCache($toReturn);
     return $toReturn;
 }
开发者ID:hellogerard,项目名称:TicTacPhaux,代码行数:9,代码来源:REServe.php

示例14: registerCollectionCallback

 public function registerCollectionCallback($object, $method, $arguments, $collection)
 {
     $newKey = $this->newCallbackKey();
     $this->callbacks[$newKey] = Object::construct("WHCollectionCallback")->setKey($newKey)->setObject($object)->setMethod($method)->setArguments($arguments)->setItems($collection);
     return $this->callbacks[$newKey];
 }
开发者ID:hellogerard,项目名称:TicTacPhaux,代码行数:6,代码来源:WHSession.php

示例15: objectForOidWithClass

 public function objectForOidWithClass($anOid, $aClass)
 {
     if ($this->getFromCache($anOid) != NULL) {
         return $this->getFromCache($anOid);
     } else {
         $result = $this->executeQuery($this->queryForLookupClassWithOid($aClass, $anOid));
         $array = mysql_fetch_array($result);
         foreach (Object::construct($aClass)->tableDefinition()->columns() as $column) {
             $this->currentColumn($column);
             if ($column->type()->reServeValueStoredWithObject()) {
                 $dRow[$column->keyPath()] = $array[$column->name()];
             }
         }
         return $this->objectForOidWithClassFromArray($anOid, $aClass, $dRow);
     }
 }
开发者ID:hellogerard,项目名称:TicTacPhaux,代码行数:16,代码来源:REServeMySQLDriver.php


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