PluginProbe
Stream – Activity Log & Audit Trail / 3.4.2
Stream – Activity Log & Audit Trail v3.4.2
4.4.0 4.3.0 4.2.2 4.2.1 trunk 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.1 3.1.1 3.10.0 3.2.0 3.2.1 3.2.2 3.2.3 All 50 releases
← All changes | classes/class-alert-type.php +4 -4 trunk3.4.2 View file →
@@ -16,9 +16,9 @@
16 16 */
17 17 abstract class Alert_Type {
18 18
19 19 /**
20 - * Holds instance of plugin object
20 + * Hold the Plugin class
21 21 *
22 22 * @var Plugin
23 23 */
24 24 public $plugin;
@@ -53,9 +53,9 @@
53 53 *
54 54 * @param Alert $alert Alert currently being worked on.
55 55 */
56 56 public function display_fields( $alert ) {
57 - // Implementation optional, but recommended.
57 + // Implementation optional, but recommended
58 58 }
59 59
60 60 /**
61 61 * Process settings form for configuration of individual alerts
@@ -62,9 +62,9 @@
62 62 *
63 63 * @param Alert $alert Alert currently being worked on.
64 64 */
65 65 public function save_fields( $alert ) {
66 - // Implementation optional, but recommended.
66 + // Implementation optional, but recommended
67 67 }
68 68
69 69 /**
70 70 * Allow connectors to determine if their dependencies are satisfied or not
@@ -71,8 +71,8 @@
71 71 *
72 72 * @return bool
73 73 */
74 74 public function is_dependency_satisfied() {
75 - // Implementation optional, but recommended.
75 + // Implementation optional, but recommended
76 76 return true;
77 77 }
78 78 }