Exemple #1
0
 /**
  *
  * @param int $fromTimestamp (GMT)
  * @param int $toTimestamp (GMT)
  * @return array (of PcTrashbinTask)
  */
 public function getDeletedContextsSince($fromTimestamp, $toTimestamp)
 {
     $c = new Criteria();
     $c->add(PcTrashbinUsersContextsPeer::USER_ID, $this->getId());
     return PcTrashbinUsersContextsPeer::getDeletedContextsSince($fromTimestamp, $toTimestamp, $c);
 }