1<?php 2/** 3 * $Id: settings.class.php 18 2017-06-19 15:22:35Z denis $ 4 * @author DenisVS <deniswebcomm@gmail.com> 5 * additional setting classes specific to these settings 6 * @link https://www.dokuwiki.org/plugin:src 7 * @based on Source Plugin by Chris Smith <chris@jalakai.co.uk> 8 */ 9 10if (!class_exists('setting_source_allowdeny')) { 11 class setting_source_allowdeny extends setting_string { 12 13 /** 14 * @return array(string $label_html, string $input_html) 15 */ 16# function html(&$plugin, $echo=false) { 17# 18# } 19 20 /** 21 * generate string to save setting value to file according to $fmt 22 */ 23# function out($var, $fmt='php') { 24# } 25 26 } 27} 28 29