• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP Zend_Service_DeveloperGarden_Request_RequestAbstract类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: __construct

 /**
  * constructor give them the environment
  *
  * @param integer $environment
  * @param Zend_Service_DeveloperGarden_IpLocation_IpAddress|array $ip
  *
  * @return Zend_Service_DeveloperGarden_Request_RequestAbstract
  */
 public function __construct($environment, $ip = null)
 {
     parent::__construct($environment);
     if ($ip !== null) {
         $this->setIp($ip);
     }
 }
开发者ID:basdog22,项目名称:Qool,代码行数:15,代码来源:LocateIPRequest.php


示例2: __construct

 /**
  * constructor give them the environment and the sessionId
  *
  * @param integer $environment
  * @param Zend_Service_DeveloperGarden_LocalSearch_SearchParameters $searchParameters
  * @param integer $account
  * @return Zend_Service_DeveloperGarden_Request_RequestAbstract
  */
 public function __construct($environment,
     Zend_Service_DeveloperGarden_LocalSearch_SearchParameters $searchParameters,
     $account = null
 ) {
     parent::__construct($environment);
     $this->setSearchParameters($searchParameters)
          ->setAccount($account);
 }
开发者ID:nhp,项目名称:shopware-4,代码行数:16,代码来源:LocalSearchRequest.php


示例3: __construct

 /**
  * constructor
  *
  * @param integer $environment
  * @param string $conferenceId
  * @param Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail $participant
  */
 public function __construct($environment, $conferenceId,
     Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail $participant)
 {
     parent::__construct($environment);
     $this->setConferenceId($conferenceId)
          ->setParticipant($participant);
 }
开发者ID:nhp,项目名称:shopware-4,代码行数:14,代码来源:NewParticipantRequest.php


示例4: __construct

 /**
  * constructor
  *
  * @param integer $environment
  * @param string $templateId
  * @param string $initiatorId
  * @param Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail $conferenceDetails
  */
 public function __construct($environment, $templateId, $initiatorId = null,
     Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail $conferenceDetails = null
 ) {
     parent::__construct($environment);
     $this->setTemplateId($templateId)
          ->setInitiatorId($initiatorId)
          ->setDetail($conferenceDetails);
 }
开发者ID:nhp,项目名称:shopware-4,代码行数:16,代码来源:UpdateConferenceTemplateRequest.php


示例5: __construct

 /**
  * constructor
  *
  * @param integer $environment
  * @param string $ownerId
  * @param Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail $conferenceDetails
  * @param array $conferenceParticipants
  */
 public function __construct($environment, $ownerId,
     Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail $conferenceDetails,
     array $conferenceParticipants = null
 ) {
     parent::__construct($environment);
     $this->setOwnerId($ownerId)
          ->setDetail($conferenceDetails)
          ->setParticipants($conferenceParticipants);
 }
开发者ID:nhp,项目名称:shopware-4,代码行数:17,代码来源:CreateConferenceTemplateRequest.php


示例6: __construct

 /**
  * constructor
  *
  * @param integer $environment
  * @param string $ownerId
  * @param Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail $conferenceDetails
  * @param Zend_Service_DeveloperGarden_ConferenceCall_ConferenceSchedule $conferenceSchedule
  * @param integer $account
  */
 public function __construct($environment, $ownerId,
     Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail $conferenceDetails,
     Zend_Service_DeveloperGarden_ConferenceCall_ConferenceSchedule $conferenceSchedule = null,
     $account = null
 ) {
     parent::__construct($environment);
     $this->setOwnerId($ownerId)
          ->setDetail($conferenceDetails)
          ->setSchedule($conferenceSchedule)
          ->setAccount($account);
 }
开发者ID:nhp,项目名称:shopware-4,代码行数:20,代码来源:CreateConferenceRequest.php


示例7: __construct

 /**
  * constructor
  *
  * @param integer $environment
  * @param string $templateId
  */
 public function __construct($environment, $templateId)
 {
     parent::__construct($environment);
     $this->setTemplateId($templateId);
 }
开发者ID:crlang44,项目名称:frapi,代码行数:11,代码来源:RemoveConferenceTemplateRequest.php


示例8: __construct

 /**
  * constructor
  *
  * @param integer $environment
  * @param string $conferenceId
  */
 public function __construct($environment, $conferenceId)
 {
     parent::__construct($environment);
     $this->setConferenceId($conferenceId);
 }
开发者ID:crlang44,项目名称:frapi,代码行数:11,代码来源:RemoveConferenceRequest.php


示例9: __construct

 /**
  * constructor
  *
  * @param integer $environment
  * @param string $templateId
  * @param string $participantId
  */
 public function __construct($environment, $templateId, $participantId)
 {
     parent::__construct($environment);
     $this->setTemplateId($templateId)->setParticipantId($participantId);
 }
开发者ID:be-dmitry,项目名称:zf1,代码行数:12,代码来源:GetConferenceTemplateParticipantRequest.php


示例10: __construct

 /**
  * constructor
  *
  * @param integer $environment
  * @param integer $what
  * @param string $ownerId
  */
 public function __construct($environment, $what = 0, $ownerId = null)
 {
     parent::__construct($environment);
     $this->setWhat($what)->setOwnerId($ownerId);
 }
开发者ID:Cryde,项目名称:sydney-core,代码行数:12,代码来源:GetConferenceListRequest.php


示例11: __construct

 /**
  * create the class for validation a sms keyword
  *
  * @param integer $environment
  * @param string $keyword
  * @param string $number
  */
 public function __construct($environment, $keyword = null, $number = null)
 {
     parent::__construct($environment);
     $this->setKeyword($keyword)->setNumber($number);
 }
开发者ID:arendasistemasintegrados,项目名称:mateusleme,代码行数:12,代码来源:Validate.php


示例12: __construct

 /**
  * constructor
  *
  * @param integer $environment
  * @param string $conferenceId
  * @param string $participantId
  */
 public function __construct($environment, $conferenceId, $participantId)
 {
     parent::__construct($environment);
     $this->setConferenceId($conferenceId)->setParticipantId($participantId);
 }
开发者ID:JaroslavRamba,项目名称:ex-facebook-bundle,代码行数:12,代码来源:GetParticipantStatusRequest.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap