/**
  * Need to override getType from ilPageContent to distinguish between Pararagraph and Source
  */
 function getType()
 {
     return $this->getCharacteristic() == "Code" ? "src" : parent::getType();
 }