コード例 #1
0
 /**
  * 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);
 }
コード例 #2
0
ファイル: LocateIPRequest.php プロジェクト: basdog22/Qool
 /**
  * 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);
     }
 }
コード例 #3
0
ファイル: LocalSearchRequest.php プロジェクト: nhp/shopware-4
 /**
  * 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);
 }
コード例 #4
0
 /**
  * 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);
 }
コード例 #5
0
 /**
  * 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);
 }
コード例 #6
0
 /**
  * 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);
 }
コード例 #7
0
 /**
  * constructor
  *
  * @param integer $environment
  * @param string $templateId
  */
 public function __construct($environment, $templateId)
 {
     parent::__construct($environment);
     $this->setTemplateId($templateId);
 }
コード例 #8
0
 /**
  * constructor
  *
  * @param integer $environment
  * @param string $conferenceId
  */
 public function __construct($environment, $conferenceId)
 {
     parent::__construct($environment);
     $this->setConferenceId($conferenceId);
 }
コード例 #9
0
 /**
  * constructor
  *
  * @param integer $environment
  * @param string $templateId
  * @param string $participantId
  */
 public function __construct($environment, $templateId, $participantId)
 {
     parent::__construct($environment);
     $this->setTemplateId($templateId)->setParticipantId($participantId);
 }
コード例 #10
0
 /**
  * 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);
 }
コード例 #11
0
 /**
  * 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);
 }
コード例 #12
0
 /**
  * constructor
  *
  * @param integer $environment
  * @param string $conferenceId
  * @param string $participantId
  */
 public function __construct($environment, $conferenceId, $participantId)
 {
     parent::__construct($environment);
     $this->setConferenceId($conferenceId)->setParticipantId($participantId);
 }