/**
  * Register the filter function with the dump manager
  * @param BackupDumper $dumper
  */
 function register(&$dumper)
 {
     $dumper->registerFilter('abstract', 'AbstractFilter');
     $dumper->registerFilter('noredirect', 'NoredirectFilter');
 }
 /**
  * Register the filter function with the dump manager
  * @param BackupDumper $dumper
  * @static
  */
 function register(&$dumper)
 {
     $dumper->registerFilter('googlecoop', 'GoogleCoopFilter');
     parent::register($dumper);
 }