PluginProbe
Email Log / 2.63
Email Log v2.63
2.63 2.4.8 2.4.9 2.6 2.61 2.62 trunk 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.8.1 0.9 0.9.1 0.9.2 1.1 1.5 1.5.1 1.5.2 1.5.3 1.5.4 All 61 releases
email-log / include / Core / UI / Setting / SettingField.php

SettingField.php in Email Log 2.63, at include/Core/UI/Setting/SettingField.php

17 lines 293 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php namespace EmailLog\Core\UI\Setting;
2
3 defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
4
5 /**
6 * A setting field used in Email Log Settings page.
7 *
8 * @see add_settings_field()
9 */
10 class SettingField {
11
12 public $id;
13 public $title;
14 public $callback;
15 public $args = array();
16 }
17