Exemplo n.º 1
0
 /**
  * @param string          $id
  * @param \DateTime       $createdAt
  * @param string          $activityType - use ActivityType constants
  * @param string          $activityLocationUrl
  * @param ActivityDetails $activityDetails
  * @param \stdClass       $activityInfo
  */
 public function __construct($id = null, \DateTime $createdAt = null, $activityType = null, \stdClass $activityInfo = null, $activityLocationUrl = null, ActivityDetails $activityDetails = null)
 {
     $this->id = $id;
     $this->createdAt = $createdAt->format(Signature::TIME_FORMAT);
     $this->activityType = ActivityType::isTypeAllowed($activityType) ? $activityType : "";
     $this->activityLocationUrl = $activityLocationUrl;
     $this->activityDetails = $activityDetails;
     $this->activityInfo = $activityInfo;
 }
 /**
  * @param array $activityTypes
  * @param \DateTime $until, The ending date for activities we want to return. This field is only relevant when a cursor is not present
  * @param \DateTime $from, The beginning date for activities we want to return. This field is only relevant when a cursor is not present
  * @param $scope, The scope of the results to return, either for the entire site or limited to the current application.
  * @param string $cursor, The semi-optional cursor into the desired data. This cursor will expire after 30 minutes, it should not be cached.
  * @param $pageSize, The number of results to return per page of data. Valid options are: 25, 50 and 100
  */
 public function __construct(array $activityTypes, \DateTime $until = null, \DateTime $from = null, $scope = Scope::SITE, $cursor = null, $pageSize = "25")
 {
     foreach ($activityTypes as $key => $type) {
         if (!ActivityType::isTypeAllowed($type)) {
             unset($activityTypes[$key]);
         }
     }
     $this->getParams = ['activityTypes' => implode(',', $activityTypes), 'scope' => Scope::isScopeAllowed($scope) ? $scope : Scope::SITE, 'cursor' => $cursor, 'pageSize' => $pageSize];
     if ($cursor == null) {
         if ($until !== null) {
             $this->getParams['until'] = $until->format(Signature::TIME_FORMAT);
         }
         if ($from !== null) {
             $this->getParams['from'] = $from->format(Signature::TIME_FORMAT);
         }
     }
 }
 /**
  * @param string    $contactId
  * @param array     $activityTypes
  * @param \DateTime $until
  * @param \DateTime $from
  * @param string    $cursor
  * @param string    $pageSize
  * @param string    $scope - use Scope class constants
  */
 public function __construct($contactId, array $activityTypes, $cursor, \DateTime $from = null, \DateTime $until = null, $pageSize = "25", $scope = Scope::SITE)
 {
     $this->command = str_replace(['{contactId}'], [$contactId], $this->command);
     foreach ($activityTypes as $key => $type) {
         if (!ActivityType::isTypeAllowed($type)) {
             unset($activityTypes[$key]);
         }
     }
     $this->getParams = array('activityTypes' => implode(',', $activityTypes), 'scope' => Scope::isScopeAllowed($scope) ? $scope : Scope::SITE, 'cursor' => $cursor, 'pageSize' => $pageSize);
     if ($cursor == null) {
         if ($until !== null) {
             $this->getParams['until'] = $until->format(Signature::TIME_FORMAT);
         }
         if ($from !== null) {
             $this->getParams['from'] = $from->format(Signature::TIME_FORMAT);
         }
     }
 }