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


PHP ezcBaseOptions::__get方法代码示例

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


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

示例1: __get

 /**
  * __get 
  * 
  * @param mixed $propertyName 
  * @throws ezcBasePropertyNotFoundException
  *          If a the value for the property options is not an instance of
  * @return mixed
  * @ignore
  */
 public function __get($propertyName)
 {
     switch ($propertyName) {
         case 'textShadowColor':
             // Use inverted font color if false
             if ($this->properties['textShadowColor'] === false) {
                 $this->properties['textShadowColor'] = $this->properties['color']->invert();
             }
             return $this->properties['textShadowColor'];
         case 'path':
             if ($this->pathChecked === false) {
                 // Enforce call of path check
                 $this->__set('path', $this->properties['path']);
             }
             // No break to use parent return
         // No break to use parent return
         default:
             return parent::__get($propertyName);
     }
 }
开发者ID:jose-martins,项目名称:glpi,代码行数:29,代码来源:font.php

示例2: __get

 /**
  * __get 
  * 
  * @param mixed $propertyName 
  * @throws ezcBasePropertyNotFoundException
  *          If a the value for the property options is not an instance of
  * @return mixed
  * @ignore
  */
 public function __get($propertyName)
 {
     switch ($propertyName) {
         case 'font':
             // Clone font configuration when requested for this element
             if (!$this->fontCloned) {
                 $this->properties['font'] = clone $this->properties['font'];
                 $this->properties['fontCloned'] = true;
             }
             return $this->properties['font'];
         default:
             return parent::__get($propertyName);
     }
 }
开发者ID:broschb,项目名称:cyclebrain,代码行数:23,代码来源:element.php


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