public function __construct($list, $row)
 {
     parent::__construct($list, $row);
     $this->revision = new Revision($row);
 }
 public function __construct($list, $row)
 {
     RevDelItem::__construct($list, $row);
     $this->revision = Revision::newFromArchiveRow($row, ['page' => $this->list->title->getArticleID()]);
 }
예제 #3
0
 public function __construct($list, $row)
 {
     RevDelItem::__construct($list, $row);
     $this->file = ArchivedFile::newFromRow($row);
     $this->lockFile = RepoGroup::singleton()->getLocalRepo()->newFile($row->fa_name);
 }
 public function __construct($list, $row)
 {
     parent::__construct($list, $row);
     $this->file = RepoGroup::singleton()->getLocalRepo()->newFileFromRow($row);
 }
 public function __construct($list, $row)
 {
     RevDelItem::__construct($list, $row);
     $this->file = ArchivedFile::newFromRow($row);
 }