getRevisionId() 공개 메소드

public getRevisionId ( ) : integer
리턴 integer
예제 #1
0
파일: Edit.php 프로젝트: forkcms/forkcms
 /**
  * Parse the content block and the revisions
  */
 protected function parse()
 {
     parent::parse();
     $this->tpl->assign('id', $this->contentBlock->getId());
     $this->tpl->assign('title', $this->contentBlock->getTitle());
     $this->tpl->assign('revision_id', $this->contentBlock->getRevisionId());
     $this->parseRevisionsDataGrid();
 }