function get()
 {
     $section =& $this->getSection();
     $form = $section->getForm();
     // Buttons erst hier einfügen, da vorher die ID noch nicht vorhanden ist
     $this->addButton('Linkmap öffnen', 'javascript:openLinkMap(\'&opener_input_field=' . $this->getId() . '\');');
     $this->addButton('Link entfernen', 'javascript:setValue(\'' . $this->getId() . '\',\'\');setValue(\'' . $this->getId() . '_NAME\',\'\');', 'file_del.gif');
     return parent::get();
 }
 function get()
 {
     $section =& $this->getSection();
     $form = $section->getForm();
     // Buttons erst hier einfügen, da vorher die ID noch nicht vorhanden ist
     $this->addButton('Medienpool öffnen', 'javascript:openMediaPool(\'&opener_form=' . $form->getName() . '&opener_input_field=' . $this->getId() . '\');');
     $this->addButton('Medium entfernen', 'javascript:setValue(\'' . $this->getId() . '\',\'\');', 'file_del.gif');
     $this->addButton('Medium hinzufügen', 'javascript:openMediaPool(\'&action=media_upload&subpage=add_file&opener_form=' . $form->getName() . '&opener_input_field=' . $this->getId() . '\');', 'file_add.gif');
     return parent::get();
 }
 function get()
 {
     $section =& $this->getSection();
     $form = $section->getForm();
     // Buttons erst hier einfügen, da vorher die ID noch nicht vorhanden ist
     $this->addButton('Medienpool öffnen', 'javascript:openMediaPool(\'&opener_form=' . $form->getName() . '&opener_input_field=' . $this->getId() . '\');');
     $this->addButton('Medium entfernen', 'javascript:setValue(\'' . $this->getId() . '\',\'\');', 'file_del.gif');
     $this->addButton('Medium hinzufügen', 'javascript:openMediaPool(\'&action=media_upload&subpage=add_file&opener_form=' . $form->getName() . '&opener_input_field=' . $this->getId() . '\');', 'file_add.gif');
     $preview = '';
     if ($this->isPreviewEnabled() && $this->getValue() != '' && OOMedia::_isImage($this->getValue())) {
         $preview = '<img class="preview" src="' . $this->previewUrl($this->getValue()) . '" />';
     }
     return $preview . parent::get();
 }