コード例 #1
0
 /**
  * Will execute the executeImpl method with a little change:
  * the ouput will be an associative-list of name + OBJECTs - the originals NOT THE WRAPPERS !
  */
 public function internalExecute($add_extra_debug_data = false)
 {
     // ignore ticketType
     $this->response_type = $this->getP("format", self::DEFAULT_FORMAT);
     //
     $this->force_ticket_check = false;
     // HERE AND ONLY HERE !!
     if ($this->response_type == kalturaWebserviceRenderer::RESPONSE_TYPE_PHP_OBJECT) {
         // 	return objects - NOT the wrapped objects
         objectWrapperBase::shouldWrap(false);
     }
     $res = $this->execute($add_extra_debug_data);
     return $res;
 }