xref: /plugin/include/conf/default.php (revision b5295d8015904793b214a5019df41e76ca6eeeaa)
1<?php
2/**
3 * Options for the Include Plugin
4 */
5$conf['firstseconly']  = 0;      // limit entries on main blog page to first section
6$conf['showtaglogos']  = 0;      // display image for first tag
7$conf['showfooter']    = 1;      // display meta line below blog entries
8$conf['showlink']      = 0;      // link headlines of blog entries
9$conf['showpermalink'] = 0;      // show permalink below blog entries
10$conf['showdate']      = 1;      // show date below blog entries
11$conf['showuser']      = 1;      // show username below blog entries
12$conf['showcomments']  = 1;      // show number of comments below blog entries
13$conf['showlinkbacks'] = 1;      // show number of linkbacks below blog entries
14$conf['showtags']      = 1;      // show tags below blog entries
15$conf['showeditbtn']   = 1;      // show the edit button
16$conf['doredirect']    = 1;      // redirect back to original page after an edit
17$conf['usernamespace'] = 'user'; // namespace for user pages
18$conf['doindent']      = 1;      // indent included pages relative to the page they get included
19$conf['linkonly']      = 0;      // link only to the included pages instead of including the content
20$conf['title']        = 0;       // use first header of page in link
21$conf['pageexists']   = 0;       // no link if page does not exist
22$conf['parlink']      = 1;       // paragraph around link
23$conf['safeindex']    = 1;       // prevent indexing of protected metadata
24//Setup VIM: ex: et ts=2 :
25