コード例 #1
0
 /**
  * @see ModifyEntity::getEntityRevisionFromApiParams
  */
 protected function getEntityRevisionFromApiParams(array $params)
 {
     $entityRev = parent::getEntityRevisionFromApiParams($params);
     // If we found anything then check if it is of the correct base class
     if (!is_null($entityRev) && !$entityRev->getEntity() instanceof Item) {
         $this->errorReporter->dieError('The content on the found page is not of correct type', 'wrong-class');
     }
     return $entityRev;
 }