Settings
System wide settings are located in /local_config.inc.php file. The options available are the following:
In the files inside lib/bulldoc/messages folder language files are contained.
Syntax's parser interface
class docTemplateSet
{
protected $structureHolder; //ref to the TOC holder object
protected $pathBuilder; //page path's object
protected $outputMode; //output mode
//parse method
//$filename -- filepath
//$params=array(
// 'path'=>$path, //TOC's page's path
// //i.e. layout/theme.html
// 'structure'=>$structure //TOC manipulation object
// //One can obtain chapter's title
// //this way:
// //$structure->getSectionTitleByPath('layout/theme.html')
// //this parameter is stored in $this->structureHolder
// )
string public function parseFile($filename,$params);
}