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


PHP ViewableData::__get方法代码示例

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


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

示例1: __get

 public function __get($property)
 {
     if ($this->hasMethod($method = "get{$property}")) {
         return $this->{$method}();
     } elseif (isset($this->data[strtolower($property)])) {
         return $this->data[strtolower($property)];
     } else {
         return parent::__get($property);
     }
 }
开发者ID:madmatt,项目名称:silverstripe-flickr,代码行数:10,代码来源:FlickrData.php

示例2:

 function __get($name)
 {
     if (isset(self::$registered_handlers[$name])) {
         $collectionClass = self::$registered_handlers[$name];
         $res = new $collectionClass();
         $res->parent = $this;
         $res->linkFragment = $name;
         return $res;
     }
     return parent::__get($name);
 }
开发者ID:helpfulrobot,项目名称:silverstripe-restassured,代码行数:11,代码来源:RESTRoot.php

示例3:

 /**
  * Insures that any array or object is wrapped properly
  */
 function __get($field)
 {
     $val = $this->wrapObject(parent::__get($field));
     if (isset($this->varName) && is_object($val) && $val instanceof ViewableWrapper) {
         $val->setVar($this->varName . '_' . $field);
         // if this variable isn't live, none of it's children should be
         if (!$this->isLiveVar($field)) {
             $val->setLiveVars(false);
         }
     }
     return $val;
 }
开发者ID:helpfulrobot,项目名称:markguinn-silverstripe-livepub,代码行数:15,代码来源:ViewableWrapper.php

示例4: __get

 /**
  * Proxy the field requests to the underlying data source
  *
  * @param mixed $property
  * @return mixed
  */
 public function __get($property)
 {
     if ($this->dataSource && $this->dataSource->ID) {
         // check for the fully realised field name
         $name = strpos($property, LayerManager::FIELD_SEPARATOR) ? $property : $this->realisedName . LayerManager::FIELD_SEPARATOR . $property;
         $val = $this->dataSource->__get($name);
         if ($val) {
             return $val;
         }
         // check has_one and many_many
         if ($this->dataSource->hasMethod($name)) {
             return $this->dataSource->{$name}();
         }
         // otherwise, just send the base property reference through
         $val = $this->dataSource->__get($property);
         if ($val) {
             return $val;
         }
     }
     return parent::__get($property);
 }
开发者ID:nyeholt,项目名称:silverstripe-denormalised-content,代码行数:27,代码来源:FlatLayer.php


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