/**
  * Publishes the selected Contents
  * @param $selectedContentsArray array - array with the contents' IDs to publish 
  */
 function publish($selectedContents)
 {
     $selectedContentsArray = split(",", $selectedContents);
     $objectService = new ObjectService();
     $objectService->publishArray($selectedContentsArray);
     $this->show_view();
 }