Plugin Directory

source: codepress-admin-columns/trunk/classes/Settings.php @ 2033156

Last change on this file since 2033156 was 2033156, checked in by tschutter, 6 years ago

version 3.4.1

File size: 276 bytes
Line 
1<?php
2namespace AC;
3
4class Settings {
5
6        /** @var Settings\Admin[] */
7        private static $settings;
8
9        public static function register_setting( Settings\Admin $setting  ) {
10                self::$settings[] = $setting;
11        }
12
13        public static function get_settings() {
14                return self::$settings;
15        }
16
17}
Note: See TracBrowser for help on using the repository browser.