Example #1
0
 public function getVersionDelete($element)
 {
     if (empty($element) || !is_array($element)) {
         $this->errorCollection->add(array(new Error("Could not " . __METHOD__ . ", empty element", 11160)));
         return false;
     }
     $v = \Bitrix\Disk\Internals\DeletedLogTable::getList(array('filter' => array('STORAGE_ID' => $this->storage->getId(), 'OBJECT_ID' => $element['extra']['id']), 'order' => array('CREATE_TIME' => 'DESC')))->fetch();
     if ($v) {
         return $v['CREATE_TIME']->getTimestamp();
     }
     $this->errorCollection->add(array(new Error("Could not " . __METHOD__ . ", find deletedLog", 111601)));
     return false;
 }