Page MenuHomec4science

PhabricatorTimelineCursor.php
No OneTemporary

File Metadata

Created
Sun, Sep 15, 18:26

PhabricatorTimelineCursor.php

<?php
final class PhabricatorTimelineCursor extends PhabricatorTimelineDAO {
protected $name;
protected $position;
public function getIDKey() {
return 'name';
}
public function getConfiguration() {
return array(
self::CONFIG_IDS => self::IDS_MANUAL,
self::CONFIG_TIMESTAMPS => false,
) + parent::getConfiguration();
}
public function shouldInsertWhenSaved() {
if ($this->position == 0) {
return true;
}
return false;
}
}

Event Timeline