1<?php
2/**
3 * additional setting classes specific to these settings
4 *
5 * @author    Chris Smith <chris@jalakai.co.uk>
6 */
7
8if (!class_exists('setting_source_allowdeny')) {
9  class setting_source_allowdeny extends setting_string {
10
11    /**
12     *  @return   array(string $label_html, string $input_html)
13     */
14#    function html(&$plugin, $echo=false) {
15#
16#    }
17
18    /**
19     *  generate string to save setting value to file according to $fmt
20     */
21#    function out($var, $fmt='php') {
22#    }
23
24  }
25}
26
27