Lines Matching refs:pipeline
77 $pipeline = new Pipeline;
78 $pipeline->configure($GLOBALS['g_config']);
79 $pipeline->fetchers[] = new MyFetcherLocalFile();
81 $pipeline->destination = new MyDestinationDownload($pdf);
82 $pipeline->data_filters[] = new DataFilterHTML2XHTML;
83 $pipeline->pre_tree_filters = array();
87 $pipeline->pre_tree_filters[] = $filter;
88 $pipeline->pre_tree_filters[] = new PreTreeFilterHTML2PSFields();
89 $pipeline->parser = new ParserXHTML();
90 $pipeline->layout_engine = new LayoutEngineDefault;
91 $pipeline->output_driver = new OutputDriverFPDF($media);
93 $pipeline->process('', $media);