| 1 |
<?php if (! defined('ABSPATH')) exit; // Exit if accessed directly |
| 2 |
interface HC3_ISettings |
| 3 |
{ |
| 4 |
public function get( $name, $wantArray = FALSE ); |
| 5 |
public function set( $name, $value ); |
| 6 |
public function reset( $name ); |
| 7 |
public function init( $name, $value ); |
| 8 |
public function resetAll(); |
| 9 |
} |