Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion GenericResolver.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
<?php

namespace dokuwiki\plugin\include;

use dokuwiki\File\Resolver;

/**
* Resolves ids without cleaning them.
*
* @package dokuwiki\plugin\include
*/
class GenericResolver extends Resolver {
class GenericResolver extends Resolver
{
}
179 changes: 98 additions & 81 deletions action.php

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions conf/default.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<?php

/**
* Options for the Include Plugin
*/

$conf['noheader'] = 0; // Don't display the header of the inserted section
$conf['firstseconly'] = 0; // limit entries on main blog page to first section
$conf['showtaglogos'] = 0; // display image for first tag
Expand Down
2 changes: 2 additions & 0 deletions conf/metadata.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
<?php

/**
* Metadata for configuration manager plugin
* Additions for the Include Plugin
*
* @author Esther Brunner <wikidesign@gmail.com>
*/

$meta['noheader'] = array('onoff');
$meta['firstseconly'] = array('onoff');
$meta['showtaglogos'] = array('onoff');
Expand Down
Loading