xref: /plugin/dw2pdf/action.php (revision e993da11b118de2786fa3e64461ff6f6ad004ad6)
1ee19bac3SLuigi Micco<?php
2ee19bac3SLuigi Micco /**
3ee19bac3SLuigi Micco  * dw2Pdf Plugin: Conversion from dokuwiki content to pdf.
4ee19bac3SLuigi Micco  *
5ee19bac3SLuigi Micco  * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6ee19bac3SLuigi Micco  * @author     Luigi Micco <l.micco@tiscali.it>
75db42babSAndreas Gohr  * @author     Andreas Gohr <andi@splitbrain.org>
8ee19bac3SLuigi Micco  */
9ee19bac3SLuigi Micco
10ee19bac3SLuigi Micco// must be run within Dokuwiki
11ee19bac3SLuigi Miccoif (!defined('DOKU_INC')) die();
12ee19bac3SLuigi Micco
131ef68647SAndreas Gohrclass action_plugin_dw2pdf extends DokuWiki_Action_Plugin {
14ee19bac3SLuigi Micco
151c14c879SAndreas Gohr    private $tpl;
161c14c879SAndreas Gohr
171c14c879SAndreas Gohr    /**
181c14c879SAndreas Gohr     * Constructor. Sets the correct template
191c14c879SAndreas Gohr     */
206be736bfSGerrit Uitslag    public function __construct(){
21737417c6SKlap-in        $tpl = false;
221c14c879SAndreas Gohr        if(isset($_REQUEST['tpl'])){
231c14c879SAndreas Gohr            $tpl = trim(preg_replace('/[^A-Za-z0-9_\-]+/','',$_REQUEST['tpl']));
241c14c879SAndreas Gohr        }
251c14c879SAndreas Gohr        if(!$tpl) $tpl = $this->getConf('template');
261c14c879SAndreas Gohr        if(!$tpl) $tpl = 'default';
271c14c879SAndreas Gohr        if(!is_dir(DOKU_PLUGIN.'dw2pdf/tpl/'.$tpl)) $tpl = 'default';
281c14c879SAndreas Gohr
291c14c879SAndreas Gohr        $this->tpl = $tpl;
301c14c879SAndreas Gohr    }
311c14c879SAndreas Gohr
32ee19bac3SLuigi Micco    /**
33ee19bac3SLuigi Micco     * Register the events
34ee19bac3SLuigi Micco     */
356be736bfSGerrit Uitslag    public function register(Doku_Event_Handler $controller) {
36ee19bac3SLuigi Micco        $controller->register_hook('ACTION_ACT_PREPROCESS', 'BEFORE', $this, 'convert', array());
376be736bfSGerrit Uitslag        $controller->register_hook('TEMPLATE_PAGETOOLS_DISPLAY', 'BEFORE', $this, 'addbutton', array());
38ee19bac3SLuigi Micco    }
39ee19bac3SLuigi Micco
401c14c879SAndreas Gohr    /**
411c14c879SAndreas Gohr     * Do the HTML to PDF conversion work
42737417c6SKlap-in     *
43737417c6SKlap-in     * @param Doku_Event $event
44737417c6SKlap-in     * @param array      $param
45737417c6SKlap-in     * @return bool
461c14c879SAndreas Gohr     */
476be736bfSGerrit Uitslag    public function convert(&$event, $param) {
48ee19bac3SLuigi Micco        global $ACT;
49ee19bac3SLuigi Micco        global $REV;
50ee19bac3SLuigi Micco        global $ID;
516ea88a05SAndreas Gohr        global $INPUT;
52ee19bac3SLuigi Micco
531ef68647SAndreas Gohr        // our event?
541ef68647SAndreas Gohr        if (( $ACT != 'export_pdfbook' ) && ( $ACT != 'export_pdf' )) return false;
55ee19bac3SLuigi Micco
561ef68647SAndreas Gohr        // check user's rights
571ef68647SAndreas Gohr        if ( auth_quickaclcheck($ID) < AUTH_READ ) return false;
581ef68647SAndreas Gohr
5987c86ddaSAndreas Gohr        // one or multiple pages?
6087c86ddaSAndreas Gohr        $list  = array();
6128e636eaSGerrit Uitslag
6287c86ddaSAndreas Gohr        if($ACT == 'export_pdf') {
6387c86ddaSAndreas Gohr            $list[0] = $ID;
64737417c6SKlap-in            $title = p_get_first_heading($ID);
65737417c6SKlap-in        } elseif(isset($_COOKIE['list-pagelist']) && !empty($_COOKIE['list-pagelist'])) {
66737417c6SKlap-in            //is in Bookmanager of bookcreator plugin title given
67737417c6SKlap-in            if(!$title = $_GET['pdfbook_title']) {  //TODO when title is changed, the cached file contains the old title
68737417c6SKlap-in                /** @var $bookcreator action_plugin_bookcreator */
6928e636eaSGerrit Uitslag                $bookcreator = plugin_load('action', 'bookcreator');
70737417c6SKlap-in                msg($bookcreator->getLang('needtitle'), -1);
71737417c6SKlap-in
72737417c6SKlap-in                $event->data               = 'show';
73737417c6SKlap-in                $_SERVER['REQUEST_METHOD'] = 'POST'; //clears url
74737417c6SKlap-in                return false;
7587c86ddaSAndreas Gohr            }
76737417c6SKlap-in            $list = explode("|", $_COOKIE['list-pagelist']);
77737417c6SKlap-in        } else {
78737417c6SKlap-in            /** @var $bookcreator action_plugin_bookcreator */
7928e636eaSGerrit Uitslag            $bookcreator = plugin_load('action', 'bookcreator');
80737417c6SKlap-in            msg($bookcreator->getLang('empty'), -1);
81737417c6SKlap-in
82737417c6SKlap-in            $event->data               = 'show';
83737417c6SKlap-in            $_SERVER['REQUEST_METHOD'] = 'POST'; //clears url
84737417c6SKlap-in            return false;
85737417c6SKlap-in        }
86737417c6SKlap-in
87737417c6SKlap-in        // it's ours, no one else's
88737417c6SKlap-in        $event->preventDefault();
8987c86ddaSAndreas Gohr
906ea88a05SAndreas Gohr        // decide on the paper setup from param or config
916ea88a05SAndreas Gohr        $pagesize    = $INPUT->str('pagesize', $this->getConf('pagesize'), true);
926ea88a05SAndreas Gohr        $orientation = $INPUT->str('orientation', $this->getConf('orientation'), true);
936ea88a05SAndreas Gohr
9487c86ddaSAndreas Gohr        // prepare cache
956ea88a05SAndreas Gohr        $cache = new cache(join(',',$list).$REV.$this->tpl.$pagesize.$orientation,'.dw2.pdf');
9687c86ddaSAndreas Gohr        $depends['files']   = array_map('wikiFN',$list);
9787c86ddaSAndreas Gohr        $depends['files'][] = __FILE__;
9887c86ddaSAndreas Gohr        $depends['files'][] = dirname(__FILE__).'/renderer.php';
9987c86ddaSAndreas Gohr        $depends['files'][] = dirname(__FILE__).'/mpdf/mpdf.php';
100df59f400SAndreas Gohr        $depends['files']   = array_merge($depends['files'], getConfigFiles('main'));
10187c86ddaSAndreas Gohr
102d01d2a42SAndreas Gohr        // hard work only when no cache available
10387c86ddaSAndreas Gohr        if(!$this->getConf('usecache') || !$cache->useCache($depends)){
1041ef68647SAndreas Gohr            // initialize PDF library
105cde5a1b3SAndreas Gohr            require_once(dirname(__FILE__)."/DokuPDF.class.php");
1066ea88a05SAndreas Gohr
1076ea88a05SAndreas Gohr            $mpdf = new DokuPDF($pagesize, $orientation);
108ee19bac3SLuigi Micco
109d62df65bSAndreas Gohr            // let mpdf fix local links
110d62df65bSAndreas Gohr            $self = parse_url(DOKU_URL);
111d62df65bSAndreas Gohr            $url  = $self['scheme'].'://'.$self['host'];
112737417c6SKlap-in            if($self['port']) $url .= ':'.$self['port'];
113d62df65bSAndreas Gohr            $mpdf->setBasePath($url);
114d62df65bSAndreas Gohr
11556d13144SAndreas Gohr            // Set the title
11656d13144SAndreas Gohr            $mpdf->SetTitle($title);
11756d13144SAndreas Gohr
1181ef68647SAndreas Gohr            // some default settings
119daa70883SAndreas Gohr            $mpdf->mirrorMargins = 1;
120daa70883SAndreas Gohr            $mpdf->useOddEven    = 1;
121daa70883SAndreas Gohr            $mpdf->setAutoTopMargin = 'stretch';
122daa70883SAndreas Gohr            $mpdf->setAutoBottomMargin = 'stretch';
1232eedf77dSAndreas Gohr
12456d13144SAndreas Gohr            // load the template
1251c14c879SAndreas Gohr            $template = $this->load_template($title);
126ee19bac3SLuigi Micco
1271ef68647SAndreas Gohr            // prepare HTML header styles
128ee19bac3SLuigi Micco            $html  = '<html><head>';
129737417c6SKlap-in            $html .= '<style type="text/css">';
1301c14c879SAndreas Gohr            $html .= $this->load_css();
131daa70883SAndreas Gohr            $html .= '@page { size:auto; '.$template['page'].'}';
1322eedf77dSAndreas Gohr            $html .= '@page :first {'.$template['first'].'}';
1331ef68647SAndreas Gohr            $html .= '</style>';
1341ef68647SAndreas Gohr            $html .= '</head><body>';
1352eedf77dSAndreas Gohr            $html .= $template['html'];
1361c14c879SAndreas Gohr            $html .= '<div class="dokuwiki">';
1372eedf77dSAndreas Gohr
1381ef68647SAndreas Gohr            // loop over all pages
1391ef68647SAndreas Gohr            $cnt = count($list);
1401ef68647SAndreas Gohr            for($n=0; $n<$cnt; $n++){
141ee19bac3SLuigi Micco                $page = $list[$n];
142ee19bac3SLuigi Micco
143a876b55bSAndreas Gohr                $html .= p_cached_output(wikiFN($page,$REV),'dw2pdf',$page);
144a180c973SKlap-in                $html .= $this->page_depend_replacements($template['cite'], cleanID($page));
1451ef68647SAndreas Gohr                if ($n < ($cnt - 1)){
1461ef68647SAndreas Gohr                    $html .= '<pagebreak />';
1471ef68647SAndreas Gohr                }
148ee19bac3SLuigi Micco            }
149ee19bac3SLuigi Micco
1501c14c879SAndreas Gohr            $html .= '</div>';
151ee19bac3SLuigi Micco            $mpdf->WriteHTML($html);
152a06728a6SAndreas Gohr
15387c86ddaSAndreas Gohr            // write to cache file
15487c86ddaSAndreas Gohr            $mpdf->Output($cache->cache, 'F');
15587c86ddaSAndreas Gohr        }
15687c86ddaSAndreas Gohr
15787c86ddaSAndreas Gohr        // deliver the file
15887c86ddaSAndreas Gohr        header('Content-Type: application/pdf');
159b853b723SAndreas Gohr        header('Cache-Control: must-revalidate, no-transform, post-check=0, pre-check=0');
16087c86ddaSAndreas Gohr        header('Pragma: public');
16187c86ddaSAndreas Gohr        http_conditionalRequest(filemtime($cache->cache));
16287c86ddaSAndreas Gohr
1639a3c8d9fSAndreas Gohr        $filename = rawurlencode(cleanID(strtr($title, ':/;"','    ')));
16487c86ddaSAndreas Gohr        if($this->getConf('output') == 'file'){
1659a3c8d9fSAndreas Gohr            header('Content-Disposition: attachment; filename="'.$filename.'.pdf";');
16687c86ddaSAndreas Gohr        }else{
1679a3c8d9fSAndreas Gohr            header('Content-Disposition: inline; filename="'.$filename.'.pdf";');
16887c86ddaSAndreas Gohr        }
169ee19bac3SLuigi Micco
170*e993da11SGerrit Uitslag        //try to send file, and exit if done
171*e993da11SGerrit Uitslag        http_sendfile($cache->cache);
17287c86ddaSAndreas Gohr
17387c86ddaSAndreas Gohr        $fp = @fopen($cache->cache,"rb");
17487c86ddaSAndreas Gohr        if($fp){
17587c86ddaSAndreas Gohr            http_rangeRequest($fp,filesize($cache->cache),'application/pdf');
17687c86ddaSAndreas Gohr        }else{
17787c86ddaSAndreas Gohr            header("HTTP/1.0 500 Internal Server Error");
17887c86ddaSAndreas Gohr            print "Could not read file - bad permissions?";
17987c86ddaSAndreas Gohr        }
1801ef68647SAndreas Gohr        exit();
1811ef68647SAndreas Gohr    }
1821ef68647SAndreas Gohr
1836be736bfSGerrit Uitslag    /**
1846be736bfSGerrit Uitslag     * Add 'export pdf'-button to pagetools
1856be736bfSGerrit Uitslag     *
1866be736bfSGerrit Uitslag     * @param Doku_Event $event
1876be736bfSGerrit Uitslag     * @param mixed      $param not defined
1886be736bfSGerrit Uitslag     */
1896be736bfSGerrit Uitslag    public function addbutton(&$event, $param) {
1906be736bfSGerrit Uitslag        global $ID, $REV, $conf;
1916be736bfSGerrit Uitslag
1926be736bfSGerrit Uitslag        if($this->getConf('showexportbutton') && $event->data['view'] == 'main') {
1936be736bfSGerrit Uitslag            $params = array('do' => 'export_pdf');
1946be736bfSGerrit Uitslag            if($REV) $params['rev'] = $REV;
1956be736bfSGerrit Uitslag
1966be736bfSGerrit Uitslag            switch($conf['template']) {
1976be736bfSGerrit Uitslag                case 'dokuwiki':
1983cc6f95eSGerrit Uitslag                case 'arago':
199fc56eef8SGerrit Uitslag                case 'wikilu': // a private template
2006be736bfSGerrit Uitslag                    $event->data['items']['export_pdf'] =
2016be736bfSGerrit Uitslag                        '<li>'
2026be736bfSGerrit Uitslag                        .'<a href='.wl($ID, $params).'  class="action export_pdf" rel="nofollow" title="'.$this->getLang('export_pdf_button').'">'
2036be736bfSGerrit Uitslag                        .'<span>'.$this->getLang('export_pdf_button').'</span>'
2046be736bfSGerrit Uitslag                        .'</a>'
2056be736bfSGerrit Uitslag                        .'</li>';
2066be736bfSGerrit Uitslag                    break;
2076be736bfSGerrit Uitslag            }
2086be736bfSGerrit Uitslag        }
2096be736bfSGerrit Uitslag    }
210d01d2a42SAndreas Gohr
211d01d2a42SAndreas Gohr    /**
2122eedf77dSAndreas Gohr     * Load the various template files and prepare the HTML/CSS for insertion
2131ef68647SAndreas Gohr     */
2141c14c879SAndreas Gohr    protected function load_template($title){
2151ef68647SAndreas Gohr        global $ID;
2161ef68647SAndreas Gohr        global $conf;
2171c14c879SAndreas Gohr        $tpl = $this->tpl;
2181ef68647SAndreas Gohr
2192eedf77dSAndreas Gohr        // this is what we'll return
2202eedf77dSAndreas Gohr        $output = array(
2212eedf77dSAndreas Gohr            'html'  => '',
2222eedf77dSAndreas Gohr            'page'  => '',
2232eedf77dSAndreas Gohr            'first' => '',
2242eedf77dSAndreas Gohr            'cite'  => '',
2252eedf77dSAndreas Gohr        );
2262eedf77dSAndreas Gohr
2272eedf77dSAndreas Gohr        // prepare header/footer elements
2282eedf77dSAndreas Gohr        $html = '';
2292eedf77dSAndreas Gohr        foreach(array('header','footer') as $t){
2309e6e41f4SAndreas Gohr            foreach(array('','_odd','_even','_first') as $h){
2312eedf77dSAndreas Gohr                if(file_exists(DOKU_PLUGIN.'dw2pdf/tpl/'.$tpl.'/'.$t.$h.'.html')){
2322eedf77dSAndreas Gohr                    $html .= '<htmlpage'.$t.' name="'.$t.$h.'">'.DOKU_LF;
2332eedf77dSAndreas Gohr                    $html .= file_get_contents(DOKU_PLUGIN.'dw2pdf/tpl/'.$tpl.'/'.$t.$h.'.html').DOKU_LF;
2342eedf77dSAndreas Gohr                    $html .= '</htmlpage'.$t.'>'.DOKU_LF;
2352eedf77dSAndreas Gohr
2362eedf77dSAndreas Gohr                    // register the needed pseudo CSS
2379e6e41f4SAndreas Gohr                    if($h == '_first'){
2382eedf77dSAndreas Gohr                        $output['first'] .= $t.': html_'.$t.$h.';'.DOKU_LF;
2392eedf77dSAndreas Gohr                    }elseif($h == '_even'){
2402eedf77dSAndreas Gohr                        $output['page'] .= 'even-'.$t.'-name: html_'.$t.$h.';'.DOKU_LF;
241daa70883SAndreas Gohr                    }elseif($h == '_odd'){
2422eedf77dSAndreas Gohr                        $output['page'] .= 'odd-'.$t.'-name: html_'.$t.$h.';'.DOKU_LF;
243daa70883SAndreas Gohr                    }else{
244daa70883SAndreas Gohr                        $output['page'] .= $t.': html_'.$t.$h.';'.DOKU_LF;
2452eedf77dSAndreas Gohr                    }
2462eedf77dSAndreas Gohr                }
2472eedf77dSAndreas Gohr            }
2482eedf77dSAndreas Gohr        }
2492eedf77dSAndreas Gohr
2501ef68647SAndreas Gohr        // prepare replacements
2511ef68647SAndreas Gohr        $replace = array(
2521ef68647SAndreas Gohr                '@PAGE@'    => '{PAGENO}',
2531ef68647SAndreas Gohr                '@PAGES@'   => '{nb}',
2542eedf77dSAndreas Gohr                '@TITLE@'   => hsc($title),
2551ef68647SAndreas Gohr                '@WIKI@'    => $conf['title'],
2561ef68647SAndreas Gohr                '@WIKIURL@' => DOKU_URL,
2571ef68647SAndreas Gohr                '@DATE@'    => dformat(time()),
2585d6fbaeaSAndreas Gohr                '@BASE@'    => DOKU_BASE,
259a180c973SKlap-in                '@TPLBASE@' => DOKU_BASE.'lib/plugins/dw2pdf/tpl/'.$tpl.'/'
2601ef68647SAndreas Gohr        );
2611ef68647SAndreas Gohr
2622eedf77dSAndreas Gohr        // set HTML element
263a180c973SKlap-in        $html = str_replace(array_keys($replace), array_values($replace), $html);
264a180c973SKlap-in        //TODO For bookcreator $ID (= bookmanager page) makes no sense
265a180c973SKlap-in        $output['html'] = $this->page_depend_replacements($html, $ID);
2661ef68647SAndreas Gohr
2672eedf77dSAndreas Gohr        // citation box
2682eedf77dSAndreas Gohr        if(file_exists(DOKU_PLUGIN.'dw2pdf/tpl/'.$tpl.'/citation.html')){
2692eedf77dSAndreas Gohr            $output['cite'] = file_get_contents(DOKU_PLUGIN.'dw2pdf/tpl/'.$tpl.'/citation.html');
2702eedf77dSAndreas Gohr            $output['cite'] = str_replace(array_keys($replace), array_values($replace), $output['cite']);
2712eedf77dSAndreas Gohr        }
2721ef68647SAndreas Gohr
2732eedf77dSAndreas Gohr        return $output;
2741ef68647SAndreas Gohr    }
2751ef68647SAndreas Gohr
2761ef68647SAndreas Gohr    /**
277a180c973SKlap-in     * @param string $raw code with placeholders
278a180c973SKlap-in     * @param string $id  pageid
279a180c973SKlap-in     * @return string
280a180c973SKlap-in     */
281a180c973SKlap-in    protected function page_depend_replacements($raw, $id){
282a180c973SKlap-in        global $REV;
283a180c973SKlap-in
284a180c973SKlap-in        // generate qr code for this page using google infographics api
285a180c973SKlap-in        $qr_code = '';
286a180c973SKlap-in        if ($this->getConf('qrcodesize')) {
287a180c973SKlap-in            $url = urlencode(wl($id,'','&',true));
288a180c973SKlap-in            $qr_code = '<img src="https://chart.googleapis.com/chart?chs='.
289a180c973SKlap-in                $this->getConf('qrcodesize').'&cht=qr&chl='.$url.'" />';
290a180c973SKlap-in        }
291a180c973SKlap-in        // prepare replacements
292a180c973SKlap-in        $replace['@ID@']      = $id;
293a180c973SKlap-in        $replace['@UPDATE@']  = dformat(filemtime(wikiFN($id, $REV)));
294a180c973SKlap-in        $replace['@PAGEURL@'] = wl($id, ($REV) ? array('rev'=> $REV) : false, true, "&");
295a180c973SKlap-in        $replace['@QRCODE@']  = $qr_code;
296a180c973SKlap-in
297a180c973SKlap-in        return str_replace(array_keys($replace), array_values($replace), $raw);
298a180c973SKlap-in    }
299a180c973SKlap-in
300a180c973SKlap-in    /**
3011c14c879SAndreas Gohr     * Load all the style sheets and apply the needed replacements
3021ef68647SAndreas Gohr     */
3031c14c879SAndreas Gohr    protected function load_css(){
304737417c6SKlap-in        global $conf;
3051c14c879SAndreas Gohr        //reusue the CSS dispatcher functions without triggering the main function
3061c14c879SAndreas Gohr        define('SIMPLE_TEST',1);
3071c14c879SAndreas Gohr        require_once(DOKU_INC.'lib/exe/css.php');
308ee19bac3SLuigi Micco
3091c14c879SAndreas Gohr        // prepare CSS files
3101c14c879SAndreas Gohr        $files = array_merge(
3111c14c879SAndreas Gohr                    array(
3121c14c879SAndreas Gohr                        DOKU_INC.'lib/styles/screen.css'
3131c14c879SAndreas Gohr                            => DOKU_BASE.'lib/styles/',
3141c14c879SAndreas Gohr                        DOKU_INC.'lib/styles/print.css'
3151c14c879SAndreas Gohr                            => DOKU_BASE.'lib/styles/',
3161c14c879SAndreas Gohr                    ),
3171c14c879SAndreas Gohr                    css_pluginstyles('all'),
31858e6409eSAndreas Gohr                    $this->css_pluginPDFstyles(),
3191c14c879SAndreas Gohr                    array(
3201c14c879SAndreas Gohr                        DOKU_PLUGIN.'dw2pdf/conf/style.css'
3211c14c879SAndreas Gohr                            => DOKU_BASE.'lib/plugins/dw2pdf/conf/',
3221c14c879SAndreas Gohr                        DOKU_PLUGIN.'dw2pdf/tpl/'.$this->tpl.'/style.css'
3231c14c879SAndreas Gohr                            => DOKU_BASE.'lib/plugins/dw2pdf/tpl/'.$this->tpl.'/',
3241c14c879SAndreas Gohr                        DOKU_PLUGIN.'dw2pdf/conf/style.local.css'
3251c14c879SAndreas Gohr                            => DOKU_BASE.'lib/plugins/dw2pdf/conf/',
3261c14c879SAndreas Gohr                    )
3271c14c879SAndreas Gohr                 );
3281c14c879SAndreas Gohr        $css = '';
3291c14c879SAndreas Gohr        foreach($files as $file => $location){
33028e636eaSGerrit Uitslag            $display = str_replace(fullpath(DOKU_INC), '', fullpath($file));
33128e636eaSGerrit Uitslag            $css .= "\n/* XXXXXXXXX $display XXXXXXXXX */\n";
3321c14c879SAndreas Gohr            $css .= css_loadfile($file, $location);
3331ef68647SAndreas Gohr        }
3341ef68647SAndreas Gohr
33528e636eaSGerrit Uitslag        if(function_exists('css_parseless')) {
3361c14c879SAndreas Gohr            // apply pattern replacements
33728e636eaSGerrit Uitslag            $styleini = css_styleini($conf['template']);
33828e636eaSGerrit Uitslag            $css = css_applystyle($css, $styleini['replacements']);
33928e636eaSGerrit Uitslag
34028e636eaSGerrit Uitslag            // parse less
34128e636eaSGerrit Uitslag            $css = css_parseless($css);
34228e636eaSGerrit Uitslag        } else {
34328e636eaSGerrit Uitslag            // @deprecated 2013-12-19: fix backward compatibility
3441c14c879SAndreas Gohr            $css = css_applystyle($css,DOKU_INC.'lib/tpl/'.$conf['template'].'/');
34528e636eaSGerrit Uitslag        }
3461ef68647SAndreas Gohr
3471c14c879SAndreas Gohr        return $css;
348ee19bac3SLuigi Micco    }
3491c14c879SAndreas Gohr
35058e6409eSAndreas Gohr    /**
35158e6409eSAndreas Gohr     * Returns a list of possible Plugin PDF Styles
35258e6409eSAndreas Gohr     *
35358e6409eSAndreas Gohr     * Checks for a pdf.css, falls back to print.css
35458e6409eSAndreas Gohr     *
35558e6409eSAndreas Gohr     * @author Andreas Gohr <andi@splitbrain.org>
35658e6409eSAndreas Gohr     */
3576be736bfSGerrit Uitslag    protected function css_pluginPDFstyles(){
35858e6409eSAndreas Gohr        $list = array();
35958e6409eSAndreas Gohr        $plugins = plugin_list();
360f54b51f7SAndreas Gohr
361f54b51f7SAndreas Gohr        $usestyle = explode(',',$this->getConf('usestyles'));
36258e6409eSAndreas Gohr        foreach ($plugins as $p){
363f54b51f7SAndreas Gohr            if(in_array($p,$usestyle)){
364f54b51f7SAndreas Gohr                $list[DOKU_PLUGIN."$p/screen.css"] = DOKU_BASE."lib/plugins/$p/";
365f54b51f7SAndreas Gohr                $list[DOKU_PLUGIN."$p/style.css"] = DOKU_BASE."lib/plugins/$p/";
366f54b51f7SAndreas Gohr            }
367f54b51f7SAndreas Gohr
36858e6409eSAndreas Gohr            if(file_exists(DOKU_PLUGIN."$p/pdf.css")){
36958e6409eSAndreas Gohr                $list[DOKU_PLUGIN."$p/pdf.css"] = DOKU_BASE."lib/plugins/$p/";
37058e6409eSAndreas Gohr            }else{
37158e6409eSAndreas Gohr                $list[DOKU_PLUGIN."$p/print.css"] = DOKU_BASE."lib/plugins/$p/";
37258e6409eSAndreas Gohr            }
37358e6409eSAndreas Gohr        }
37458e6409eSAndreas Gohr        return $list;
37558e6409eSAndreas Gohr    }
376ee19bac3SLuigi Micco}
377