1<?php 2/** 3 * Created by IntelliJ IDEA. 4 * User: andi 5 * Date: 2/11/17 6 * Time: 11:31 AM 7 */ 8 9namespace dokuwiki\Action; 10 11class Index extends AbstractAction { 12 13 /** @inheritdoc */ 14 function minimumPermission() { 15 return AUTH_NONE; 16 } 17 18 public function tplContent() { 19 global $IDX; 20 html_index($IDX); 21 } 22 23} 24