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


PHP Struct\Base类代码示例

本文整理汇总了PHP中Zimbra\Struct\Base的典型用法代码示例。如果您正苦于以下问题:PHP Base类的具体用法?PHP Base怎么用?PHP Base使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: __construct

 public function __construct(array $attrs = [])
 {
     parent::__construct();
     $this->setAttrs($attrs);
     $this->on('before', function (Base $sender) {
         $attrs = $sender->getAttrs();
         if (!empty($attrs)) {
             $sender->setProperty('attrs', $attrs);
         }
     });
 }
开发者ID:zimbra-api,项目名称:struct,代码行数:11,代码来源:AttributeSelectorTrailTest.php

示例2: __construct

 /**
  * Constructor method for AttachSpec
  * @param  bool $optional Optional
  * @return self
  */
 public function __construct($optional = null)
 {
     parent::__construct();
     if (null !== $optional) {
         $this->setProperty('optional', (bool) $optional);
     }
 }
开发者ID:zimbra-api,项目名称:mail,代码行数:12,代码来源:AttachSpec.php

示例3: toXml

 /**
  * Method returning the xml representation of this class
  *
  * @param  string $name
  * @return SimpleXML
  */
 public function toXml($name = 'attach')
 {
     return parent::toXml($name);
 }
开发者ID:nucleus-be,项目名称:zimbra-api,代码行数:10,代码来源:CalendarAttach.php

示例4: toXml

 /**
  * Method returning the xml representative this class
  *
  * @return SimpleXML
  */
 public function toXml($name = 'phone')
 {
     return parent::toXml($name);
 }
开发者ID:nucleus-be,项目名称:zimbra-api,代码行数:9,代码来源:ModifyVoiceMailPinSpec.php

示例5: toXml

 /**
  * Method returning the xml representative this class
  *
  * @param  string $name
  * @return SimpleXML
  */
 public function toXml($name = 'search')
 {
     return parent::toXml($name);
 }
开发者ID:zimbra-api,项目名称:mail,代码行数:10,代码来源:NewSearchFolderSpec.php

示例6: toXml

 /**
  * Method returning the xml representation of this class
  *
  * @return SimpleXML
  */
 public function toXml($name = 'authToken')
 {
     return parent::toXml($name);
 }
开发者ID:zimbra-api,项目名称:account,代码行数:9,代码来源:AuthToken.php


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