materio_personal_notes.features.filter.inc 575 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * @file
  4. * materio_personal_notes.features.filter.inc
  5. */
  6. /**
  7. * Implements hook_filter_default_formats().
  8. */
  9. function materio_personal_notes_filter_default_formats() {
  10. $formats = array();
  11. // Exported format: Note Format.
  12. $formats['note_format'] = array(
  13. 'format' => 'note_format',
  14. 'name' => 'Note Format',
  15. 'cache' => 1,
  16. 'status' => 1,
  17. 'weight' => -8,
  18. 'filters' => array(
  19. 'filter_html_escape' => array(
  20. 'weight' => -10,
  21. 'status' => 1,
  22. 'settings' => array(),
  23. ),
  24. ),
  25. );
  26. return $formats;
  27. }