Lines Matching defs:tpl
38 if (@is_readable(DOKU_INC . 'lib/tpl/' . $conf['template'] . '/' . $file))
39 return DOKU_INC . 'lib/tpl/' . $conf['template'] . '/' . $file;
41 return DOKU_INC . 'lib/tpl/dokuwiki/' . $file;
49 * @param string $tpl The template to use, default to current one
54 function tpl_incdir($tpl = '')
57 if (!$tpl) $tpl = $conf['template'];
58 return DOKU_INC . 'lib/tpl/' . $tpl . '/';
66 * @param string $tpl The template to use, default to current one
71 function tpl_basedir($tpl = '')
74 if (!$tpl) $tpl = $conf['template'];
75 return DOKU_BASE . 'lib/tpl/' . $tpl . '/';
245 $depends[] = DOKU_CONF . "tpl/" . $conf['template'] . "/style.ini";
1286 $tpl = $conf['template'];
1292 if (isset($conf['tpl'][$tpl][$key])) continue;
1293 $conf['tpl'][$tpl][$key] = $value;
1299 return $conf['tpl'][$tpl][$id] ?? $notset;