예제 #1
0
 /**
  * Frees as much memory that has been used by this object as possible.
  */
 public function __destruct()
 {
     unset($this->organizer);
     parent::__destruct();
 }
예제 #2
0
 /**
  * Frees as much memory that has been used by this object as possible.
  */
 public function __destruct()
 {
     unset($this->seminar, $this->accessCheck);
     parent::__destruct();
 }
예제 #3
0
 /**
  * Returns the parameters to add to the CSV icon link.
  *
  * @return string the additional link parameters for the CSV icon link, will
  *                always start with an &amp and be htmlspecialchared, may
  *                be empty
  */
 protected function getAdditionalCsvParameters()
 {
     if ($this->eventUid > 0) {
         $result = '&tx_seminars_pi2[eventUid]=' . $this->eventUid;
     } else {
         $result = parent::getAdditionalCsvParameters();
     }
     return $result;
 }
예제 #4
0
 /**
  * Frees as much memory that has been used by this object as possible.
  */
 public function __destruct()
 {
     unset($this->speaker);
     parent::__destruct();
 }