Guest User

Untitled

a guest
Jul 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <?php
  2. class BlogEntryDecorator extends DataObjectDecorator {
  3.  
  4. function extraDbFields() {
  5. return array(
  6. 'has_one' => array(
  7. 'Ilustracja' => 'Image',
  8. 'Dokument' => 'File',
  9. )
  10. );
  11. }
  12.  
  13. function updateCMSFields(FieldSet &$fields) {
  14. $fields->addFieldToTab("Root.Content.Dokument", new FileIFrameField("Dokument", "Dokument"));
  15. $fields->addFieldToTab("Root.Content.Ilustracja", new ImageField("Ilustracja", "Ilustracja artykulu"));
  16. }
  17.  
  18. }
  19. ?>
Add Comment
Please, Sign In to add comment