Guest User

Untitled

a guest
Aug 19th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <?php
  2.  
  3. class ComputadorObject extends DataObjectDecorator {
  4.  
  5. function extraStatics() {
  6. return array(
  7. 'db' => array(
  8. 'Garantia' => 'HTMLText',
  9. 'Despacho' => 'HTMLText',
  10. ),
  11. );
  12. }
  13.  
  14. public function getCMSFields_forPopup(FieldSet &$fields) {
  15. $fields = new FieldSet(
  16. new SimpleTinyMCEField('Garantia',_t('ComputadorObject.GARANTIA',"Garantía")),
  17. new SimpleTinyMCEField('Despacho',_t('ComputadorObject.DESPACHO',"Despacho"))
  18. );
  19. return $fields;
  20. }
  21.  
  22. }
Add Comment
Please, Sign In to add comment