getRevision() public static method

Get all data for a given revision.
Deprecation: use doctrine instead
public static getRevision ( integer $id, integer $revisionId ) : array
$id integer The Id for the item wherefore you want a revision.
$revisionId integer The Id of the revision.
return array
Example #1
0
 /**
  * Get the data
  * If a revision-id was specified in the URL we load the revision and not the most recent data.
  */
 private function getData()
 {
     $this->record = BackendContentBlocksModel::get($this->id);
     // specific revision?
     $revisionToLoad = $this->getParameter('revision', 'int');
     // if this is a valid revision
     if ($revisionToLoad !== null) {
         // overwrite the current record
         $this->record = BackendContentBlocksModel::getRevision($this->id, $revisionToLoad);
         // show warning
         $this->tpl->assign('usingRevision', true);
     }
     // get the templates
     // @todo why is $this->templates loaded twice?
     $this->templates = BackendContentBlocksModel::getTemplates();
     // check if selected template is still available
     if ($this->record['template'] && !in_array($this->record['template'], $this->templates)) {
         $this->record['template'] = '';
     }
 }